Fix typo in call to isUnresolvableFunc, which was breaking the build.
authorBrian Gaeke <gaeke@uiuc.edu>
Thu, 17 Jul 2003 19:07:46 +0000 (19:07 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Thu, 17 Jul 2003 19:07:46 +0000 (19:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7194 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/DSCallSiteIterator.h

index 499e2c8276146e9b673552add3dcba57ad60b6af..acbf8083c7afd75e1dea179621f5f302627696fa 100644 (file)
@@ -47,7 +47,7 @@ struct DSCallSiteIterator {
     while (CallSite < FCs->size()) {
       if ((*FCs)[CallSite].isDirectCall()) {
         if (CallSiteEntry == 0 &&        // direct call only has one target...
-            ! DSCallSite::isUnresolvableFunc((*FCs)[CallSite].getCalleeFunc()))
+            ! isUnresolvableFunc((*FCs)[CallSite].getCalleeFunc()))
           return;                       // and not an unresolvable external func
       } else {
         DSNode *CalleeNode = (*FCs)[CallSite].getCalleeNode();