src/hotspot/share/ci/ciTypeFlow.hpp
changeset 51333 f6641fcf7b7e
parent 49373 47b5652f2928
child 53244 9807daeb47c4
equal deleted inserted replaced
51332:c25572739e7c 51333:f6641fcf7b7e
   722     bool   _irreducible;
   722     bool   _irreducible;
   723     LocalSet _def_locals;
   723     LocalSet _def_locals;
   724 
   724 
   725   public:
   725   public:
   726     Loop(Block* head, Block* tail) :
   726     Loop(Block* head, Block* tail) :
       
   727       _parent(NULL), _sibling(NULL), _child(NULL),
   727       _head(head),   _tail(tail),
   728       _head(head),   _tail(tail),
   728       _parent(NULL), _sibling(NULL), _child(NULL),
       
   729       _irreducible(false), _def_locals() {}
   729       _irreducible(false), _def_locals() {}
   730 
   730 
   731     Loop* parent()  const { return _parent; }
   731     Loop* parent()  const { return _parent; }
   732     Loop* sibling() const { return _sibling; }
   732     Loop* sibling() const { return _sibling; }
   733     Loop* child()   const { return _child; }
   733     Loop* child()   const { return _child; }