From 438b00b2adf348cdb933d8764335cebd56046abc Mon Sep 17 00:00:00 2001 From: Edward O'Callaghan Date: Mon, 2 Nov 2009 03:14:31 +0000 Subject: [PATCH] Fix for warning seen on DF-BSD, Victor, please fix this to use a shift instead of pow() git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85781 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/MemoryBuiltins.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/MemoryBuiltins.cpp b/lib/Analysis/MemoryBuiltins.cpp index f3b94c2da4a..4ebfa966421 100644 --- a/lib/Analysis/MemoryBuiltins.cpp +++ b/lib/Analysis/MemoryBuiltins.cpp @@ -158,7 +158,7 @@ static Value* isArrayMallocHelper(const CallInst *CI, LLVMContext &Context, if (Opcode == Instruction::Shl) { ConstantInt* Op1Int = dyn_cast(Op1); if (!Op1Int) return NULL; - Value* Op1Pow = ConstantInt::get(Op1->getType(), + Value* Op1Pow = ConstantInt::get(Op1->getType(), (uint64_t) pow(2.0, (double) Op1Int->getZExtValue())); if (Op0 == ElementSize || (FoldedElementSize && Op0 == FoldedElementSize)) // ArraySize << log2(ElementSize) -- 2.34.1