src/share/vm/opto/cfgnode.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 7069452 Cdiff src/share/vm/opto/cfgnode.hpp

src/share/vm/opto/cfgnode.hpp

Print this page

        

*** 215,227 **** //------------------------------GotoNode--------------------------------------- // GotoNodes perform direct branches. class GotoNode : public Node { public: ! GotoNode( Node *control ) : Node(control) { ! init_flags(Flag_is_Goto); ! } virtual int Opcode() const; virtual bool pinned() const { return true; } virtual bool is_CFG() const { return true; } virtual uint hash() const { return NO_HASH; } // CFG nodes do not hash virtual const Node *is_block_proj() const { return this; } --- 215,225 ---- //------------------------------GotoNode--------------------------------------- // GotoNodes perform direct branches. class GotoNode : public Node { public: ! GotoNode( Node *control ) : Node(control) {} virtual int Opcode() const; virtual bool pinned() const { return true; } virtual bool is_CFG() const { return true; } virtual uint hash() const { return NO_HASH; } // CFG nodes do not hash virtual const Node *is_block_proj() const { return this; }
src/share/vm/opto/cfgnode.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File