diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-19 21:15:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-19 21:15:11 +0000 |
commit | bd92b73be7cc90a3671310a44c1195e7a7087820 (patch) | |
tree | 2d0b0ddd2ca2ca2f2d201df584c69d85ece2b39e /lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | 160cf4867183ed780aa94d8875b0ec115d468809 (diff) |
* Changes to make NodeType be private to DSNode.
* Add new MultiObject flag to DSNode which keeps track of whether or not
multiple objects have been merged into the node, allowing must-alias info
to be tracked.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6794 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/BottomUpClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index 0833a02912..9f504366b6 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -33,7 +33,7 @@ static bool isVAHackFn(const Function *F) { // if the call sites are not external. // static inline bool isCompleteNode(DSNode *N) { - if (N->NodeType & DSNode::Incomplete) return false; + if (N->isIncomplete()) return false; const std::vector<GlobalValue*> &Callees = N->getGlobals(); for (unsigned i = 0, e = Callees.size(); i != e; ++i) if (Callees[i]->isExternal()) |