summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/ConstantFolding.cpp
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2010-07-16 09:38:02 +0000
committerGabor Greif <ggreif@gmail.com>2010-07-16 09:38:02 +0000
commit6d673953e370e8f17ad35bc60fa69e2f497c5442 (patch)
tree1ac638bb4c203cd34e4035f1b7f32c9166379eac /llvm/lib/Analysis/ConstantFolding.cpp
parent796c2a52a96567fe9f02ba79342981afb65a38f5 (diff)
downloadbcm5719-llvm-6d673953e370e8f17ad35bc60fa69e2f497c5442.tar.gz
bcm5719-llvm-6d673953e370e8f17ad35bc60fa69e2f497c5442.zip
eliminate CallInst::ArgOffset
llvm-svn: 108522
Diffstat (limited to 'llvm/lib/Analysis/ConstantFolding.cpp')
-rw-r--r--llvm/lib/Analysis/ConstantFolding.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/ConstantFolding.cpp b/llvm/lib/Analysis/ConstantFolding.cpp
index 13d8f4de482..0bf7967e83b 100644
--- a/llvm/lib/Analysis/ConstantFolding.cpp
+++ b/llvm/lib/Analysis/ConstantFolding.cpp
@@ -778,9 +778,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[CallInst::ArgOffset ? 0:NumOps-1]))
+ if (Function *F = dyn_cast<Function>(Ops[NumOps - 1]))
if (canConstantFoldCallTo(F))
- return ConstantFoldCall(F, Ops+CallInst::ArgOffset, NumOps-1);
+ return ConstantFoldCall(F, Ops, NumOps - 1);
return 0;
case Instruction::PtrToInt:
// If the input is a inttoptr, eliminate the pair. This requires knowing
OpenPOWER on IntegriCloud