mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Fix typo in call to isUnresolvableFunc, which was breaking the build.
llvm-svn: 7194
This commit is contained in:
parent
dbaf5f719c
commit
026c333f07
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user