aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2010-07-07 10:34:03 +0000
committerGabor Greif <ggreif@gmail.com>2010-07-07 10:34:03 +0000
commit274fefdd968c594983e19e9debc0ba9674d01991 (patch)
tree6217e08ff8fa3a09d21ef81908ab4526d7ca9192
parent392a8867bbe315623584bdaddd77f5a020ebed94 (diff)
downloadexternal_llvm-274fefdd968c594983e19e9debc0ba9674d01991.zip
external_llvm-274fefdd968c594983e19e9debc0ba9674d01991.tar.gz
external_llvm-274fefdd968c594983e19e9debc0ba9674d01991.tar.bz2
conditionalize by CallInst::ArgOffset
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107767 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/ConstantFolding.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/ConstantFolding.cpp b/lib/Analysis/ConstantFolding.cpp
index 1f4538a..0c4d850 100644
--- a/lib/Analysis/ConstantFolding.cpp
+++ b/lib/Analysis/ConstantFolding.cpp
@@ -772,9 +772,9 @@ Constant *llvm::ConstantFoldInstOperands(unsigned Opcode, const Type *DestTy,
case Instruction::ICmp:
case Instruction::FCmp: assert(0 && "Invalid for compares");
case Instruction::Call:
- if (Function *F = dyn_cast<Function>(Ops[0]))
+ if (Function *F = dyn_cast<Function>(Ops[CallInst::ArgOffset ? 0:NumOps-1]))
if (canConstantFoldCallTo(F))
- return ConstantFoldCall(F, Ops+1, NumOps-1);
+ return ConstantFoldCall(F, Ops+CallInst::ArgOffset, NumOps-1);
return 0;
case Instruction::PtrToInt:
// If the input is a inttoptr, eliminate the pair. This requires knowing