From: Chris Lattner Date: Fri, 28 Oct 2005 16:27:35 +0000 (+0000) Subject: Fix a bit of backwards logic that broke exptree and smg2000 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=325231c925a5f80c3e41635762547d80affecff3;p=oota-llvm.git Fix a bit of backwards logic that broke exptree and smg2000 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24056 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 4aab0963352..e029f7a6571 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -3862,7 +3862,7 @@ Instruction *InstCombiner::PromoteCastOfAllocation(CastInst &CI, Amt = ConstantUInt::get(Type::UIntTy, Scale); if (ConstantUInt *CI = dyn_cast(NumElements)) Amt = ConstantExpr::getMul(CI, cast(Amt)); - else if (cast(Amt)->getValue() == 1) { + else if (Scale != 1) { Instruction *Tmp = BinaryOperator::createMul(Amt, NumElements, "tmp"); Amt = InsertNewInstBefore(Tmp, AI); }