src/share/vm/opto/mathexactnode.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/opto/mathexactnode.hpp

src/share/vm/opto/mathexactnode.hpp

Print this page
rev 5637 : 8028207: assert(_outcnt==1) failed: not unique in compile.cpp
Reviewed-by: duke

*** 47,57 **** }; virtual int Opcode() const; virtual Node* Identity(PhaseTransform* phase) { return this; } virtual Node* Ideal(PhaseGVN* phase, bool can_reshape) { return NULL; } virtual const Type* Value(PhaseTransform* phase) const { return bottom_type(); } ! virtual uint hash() const { return Node::hash(); } virtual bool is_CFG() const { return false; } virtual uint ideal_reg() const { return NotAMachineReg; } ProjNode* result_node() const { return proj_out(result_proj_node); } ProjNode* flags_node() const { return proj_out(flags_proj_node); } --- 47,57 ---- }; virtual int Opcode() const; virtual Node* Identity(PhaseTransform* phase) { return this; } virtual Node* Ideal(PhaseGVN* phase, bool can_reshape) { return NULL; } virtual const Type* Value(PhaseTransform* phase) const { return bottom_type(); } ! virtual uint hash() const { return NO_HASH; } virtual bool is_CFG() const { return false; } virtual uint ideal_reg() const { return NotAMachineReg; } ProjNode* result_node() const { return proj_out(result_proj_node); } ProjNode* flags_node() const { return proj_out(flags_proj_node); }
src/share/vm/opto/mathexactnode.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File