diff options
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()) |