Fix typo in call to isUnresolvableFunc, which was breaking the build.

llvm-svn: 7194
This commit is contained in:
Brian Gaeke 2003-07-17 19:07:46 +00:00
parent 0643ceafcf
commit c55a920283
1 changed files with 1 additions and 1 deletions

View 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();