mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Simplify class hierarchy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37447 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
743f7e8839
commit
f082a9ae6b
@ -63,7 +63,7 @@ public:
|
||||
class DomTreeNode {
|
||||
friend class DominatorTree;
|
||||
friend struct PostDominatorTree;
|
||||
friend class DominatorTreeBase;
|
||||
|
||||
BasicBlock *TheBB;
|
||||
DomTreeNode *IDom;
|
||||
std::vector<DomTreeNode*> Children;
|
||||
@ -99,10 +99,8 @@ public:
|
||||
return properlyDominates(N);
|
||||
}
|
||||
|
||||
private:
|
||||
inline DomTreeNode(BasicBlock *BB, DomTreeNode *iDom) : TheBB(BB), IDom(iDom) {}
|
||||
inline DomTreeNode *addChild(DomTreeNode *C) { Children.push_back(C); return C; }
|
||||
|
||||
void setIDom(DomTreeNode *NewIDom);
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user