eliminate warning when asserts disabled.

llvm-svn: 61012
This commit is contained in:
Chris Lattner 2008-12-14 21:36:23 +00:00
parent a236dc44d6
commit f5eef9f6db
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ SimplifyHalfPowrLibCalls::InlineHalfPowrs(const std::vector<Instruction *> &Half
NewBlock = SplitBlock(NextInst->getParent(), NextInst, this);
bool B = InlineFunction(Call, 0, TD);
assert(B && "half_powr didn't inline?");
assert(B && "half_powr didn't inline?"); B=B;
BasicBlock *NewBody = NewBlock->getSinglePredecessor();
assert(NewBody);