mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 22:26:14 +00:00
Add FIXMEs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37417 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bbf8c8e71f
commit
055756bf52
@ -283,6 +283,8 @@ public:
|
||||
|
||||
typedef std::map<BasicBlock*, ETNode*> ETMapType;
|
||||
|
||||
// FIXME : There is no need to make this interface public.
|
||||
// Fix predicate simplifier.
|
||||
void updateDFSNumbers();
|
||||
|
||||
/// dominates - Return true if A dominates B.
|
||||
@ -426,6 +428,8 @@ public:
|
||||
}
|
||||
|
||||
void calculate(const DominatorTree &DT);
|
||||
// FIXME : There is no need to make getNodeForBlock public. Fix
|
||||
// predicate simplifier.
|
||||
ETNode *getNodeForBlock(BasicBlock *BB);
|
||||
};
|
||||
|
||||
|
@ -921,6 +921,8 @@ const bool ETForestBase::isReachableFromEntry(BasicBlock* A) {
|
||||
return dominates(&A->getParent()->getEntryBlock(), A);
|
||||
}
|
||||
|
||||
// FIXME : There is no need to make getNodeForBlock public. Fix
|
||||
// predicate simplifier.
|
||||
ETNode *ETForest::getNodeForBlock(BasicBlock *BB) {
|
||||
ETNode *&BBNode = Nodes[BB];
|
||||
if (BBNode) return BBNode;
|
||||
|
Loading…
Reference in New Issue
Block a user