mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 07:31:53 +00:00
eliminate warning when asserts disabled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61012 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5c6d91c1d1
commit
528f16b9fa
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user