aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/ConstantFolding.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-01-31 18:04:55 +0000
committerChris Lattner <sabre@nondot.org>2007-01-31 18:04:55 +0000
commitad58eb34342f70f094008e6d08cb4ed814754e64 (patch)
tree592dfa670df785961ad5b6489850cf8d934553cc /lib/Analysis/ConstantFolding.cpp
parentb5b84f92bf5b5d075cb7fa8f67fa94d062aebfe7 (diff)
downloadexternal_llvm-ad58eb34342f70f094008e6d08cb4ed814754e64.zip
external_llvm-ad58eb34342f70f094008e6d08cb4ed814754e64.tar.gz
external_llvm-ad58eb34342f70f094008e6d08cb4ed814754e64.tar.bz2
Fix a minor bug in my patch yesterday that broken ConstProp/bswap.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33704 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ConstantFolding.cpp')
-rw-r--r--lib/Analysis/ConstantFolding.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ConstantFolding.cpp b/lib/Analysis/ConstantFolding.cpp
index 8a690fe..1bf6b50 100644
--- a/lib/Analysis/ConstantFolding.cpp
+++ b/lib/Analysis/ConstantFolding.cpp
@@ -210,7 +210,7 @@ Constant *llvm::ConstantFoldInstOperands(const Instruction* I,
case Instruction::Call:
if (Function *F = dyn_cast<Function>(Ops[0]))
if (canConstantFoldCallTo(F))
- return ConstantFoldCall(F, Ops+1, NumOps);
+ return ConstantFoldCall(F, Ops+1, NumOps-1);
return 0;
case Instruction::ICmp:
case Instruction::FCmp: