From: David Majnemer Date: Sat, 22 Nov 2014 06:09:28 +0000 (+0000) Subject: InstCombine: Silence a parenthesis warning X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1c4abdb6ab6e959418b82f235e3f7c8646c7792c;p=oota-llvm.git InstCombine: Silence a parenthesis warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222609 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/InstCombine/InstCombineCompares.cpp b/lib/Transforms/InstCombine/InstCombineCompares.cpp index 6127eaaa4dd..f59e3758101 100644 --- a/lib/Transforms/InstCombine/InstCombineCompares.cpp +++ b/lib/Transforms/InstCombine/InstCombineCompares.cpp @@ -2550,7 +2550,7 @@ static bool isChainSelectCmpBranch(const SelectInst *SI) { bool InstCombiner::replacedSelectWithOperand(SelectInst *SI, const ICmpInst *Icmp, const unsigned SIOpd) { - assert(SIOpd == 1 || SIOpd == 2 && "Invalid select operand!\n"); + assert((SIOpd == 1 || SIOpd == 2) && "Invalid select operand!"); if (isChainSelectCmpBranch(SI) && Icmp->getPredicate() == ICmpInst::ICMP_EQ) { BasicBlock *Succ = SI->getParent()->getTerminator()->getSuccessor(1); // The check for the unique predecessor is not the best that can be