mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-02 00:35:27 +00:00
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
This commit is contained in:
parent
a676b78791
commit
1d2ba44224
@ -47,7 +47,7 @@ struct DSCallSiteIterator {
|
|||||||
while (CallSite < FCs->size()) {
|
while (CallSite < FCs->size()) {
|
||||||
if ((*FCs)[CallSite].isDirectCall()) {
|
if ((*FCs)[CallSite].isDirectCall()) {
|
||||||
if (CallSiteEntry == 0 && // direct call only has one target...
|
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
|
return; // and not an unresolvable external func
|
||||||
} else {
|
} else {
|
||||||
DSNode *CalleeNode = (*FCs)[CallSite].getCalleeNode();
|
DSNode *CalleeNode = (*FCs)[CallSite].getCalleeNode();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user