commit | 528f16b9fa3163d54d430b3a85e91e0730622bf9 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Dec 14 21:36:23 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Dec 14 21:36:23 2008 +0000 |
tree | 9f6b65cb8eb4183ae44fc49c5c285a89d489a553 | |
parent | 5c6d91c1d1bd04d032e1d94266045676c2b27f5a [diff] |
eliminate warning when asserts disabled. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61012 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/SimplifyHalfPowrLibCalls.cpp b/lib/Transforms/Scalar/SimplifyHalfPowrLibCalls.cpp index 530ad03..4aad17d 100644 --- a/lib/Transforms/Scalar/SimplifyHalfPowrLibCalls.cpp +++ b/lib/Transforms/Scalar/SimplifyHalfPowrLibCalls.cpp
@@ -96,7 +96,7 @@ 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);