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);