projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a676b78
)
Fix typo in call to isUnresolvableFunc, which was breaking the build.
author
Brian Gaeke
<gaeke@uiuc.edu>
Thu, 17 Jul 2003 19:07:46 +0000
(19:07 +0000)
committer
Brian 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
patch
|
blob
|
history
diff --git
a/lib/Analysis/DataStructure/DSCallSiteIterator.h
b/lib/Analysis/DataStructure/DSCallSiteIterator.h
index 499e2c8276146e9b673552add3dcba57ad60b6af..acbf8083c7afd75e1dea179621f5f302627696fa 100644
(file)
--- 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();