diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-03-22 09:11:00 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-03-22 09:11:00 +0000 |
commit | e1517a084f56cd23dd4a64338e0865f53e978d9b (patch) | |
tree | 4e12a84b1a2fa11406d3f67c8884647983d532fb /llvm/lib/Analysis/IPA/GlobalsModRef.cpp | |
parent | 7a743e15e31701db08f2092538ed2d5dfabe0cdb (diff) | |
download | bcm5719-llvm-e1517a084f56cd23dd4a64338e0865f53e978d9b.tar.gz bcm5719-llvm-e1517a084f56cd23dd4a64338e0865f53e978d9b.zip |
backing out r99170 because it still fails on clang-x86_64-darwin10-fnt
llvm-svn: 99171
Diffstat (limited to 'llvm/lib/Analysis/IPA/GlobalsModRef.cpp')
-rw-r--r-- | llvm/lib/Analysis/IPA/GlobalsModRef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/IPA/GlobalsModRef.cpp b/llvm/lib/Analysis/IPA/GlobalsModRef.cpp index b14afa32313..7b43089d592 100644 --- a/llvm/lib/Analysis/IPA/GlobalsModRef.cpp +++ b/llvm/lib/Analysis/IPA/GlobalsModRef.cpp @@ -257,7 +257,7 @@ bool GlobalsModRef::AnalyzeUsesOfPointer(Value *V, } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) { // Make sure that this is just the function being called, not that it is // passing into the function. - for (unsigned i = 0, e = II->getNumOperands() - 3; i != e; ++i) + for (unsigned i = 3, e = II->getNumOperands(); i != e; ++i) if (II->getOperand(i) == V) return true; } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(*UI)) { if (CE->getOpcode() == Instruction::GetElementPtr || |