From: Chris Lattner Date: Wed, 31 Jan 2007 18:04:55 +0000 (+0000) Subject: Fix a minor bug in my patch yesterday that broken ConstProp/bswap.ll X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ad58eb34342f70f094008e6d08cb4ed814754e64;p=oota-llvm.git 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 --- diff --git a/lib/Analysis/ConstantFolding.cpp b/lib/Analysis/ConstantFolding.cpp index 8a690feed1e..1bf6b50333e 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(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: