From 1d2ba44224de68a6e473573c9bfaaad3766faae7 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Thu, 17 Jul 2003 19:07:46 +0000 Subject: [PATCH] Fix typo in call to isUnresolvableFunc, which was breaking the build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7194 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/DataStructure/DSCallSiteIterator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/DataStructure/DSCallSiteIterator.h b/lib/Analysis/DataStructure/DSCallSiteIterator.h index 499e2c82761..acbf8083c7a 100644 --- a/lib/Analysis/DataStructure/DSCallSiteIterator.h +++ b/lib/Analysis/DataStructure/DSCallSiteIterator.h @@ -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(); -- 2.34.1