equal
deleted
inserted
replaced
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; } |