From: Simon Pilgrim Date: Wed, 15 Mar 2017 23:27:43 +0000 (+0000) Subject: Remove redundant condition (PR32263). NFCI. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7364cf0bf09764b6d2eca633dfc158b3f7843d6;p=llvm Remove redundant condition (PR32263). NFCI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297915 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/MipsSEISelDAGToDAG.cpp b/lib/Target/Mips/MipsSEISelDAGToDAG.cpp index dfecbc8fcec..9e854f8db6d 100644 --- a/lib/Target/Mips/MipsSEISelDAGToDAG.cpp +++ b/lib/Target/Mips/MipsSEISelDAGToDAG.cpp @@ -1006,7 +1006,7 @@ bool MipsSEDAGToDAGISel::trySelect(SDNode *Node) { : (SplatBitSize == 64 ? Mips::FILL_D : 0)); assert(FILLOp != 0 && "Unknown FILL Op for splat synthesis!"); - assert((!ABI.IsO32() || (ABI.IsO32() && FILLOp != Mips::FILL_D)) && + assert((!ABI.IsO32() || (FILLOp != Mips::FILL_D)) && "Attempting to use fill.d on MIPS32!"); const unsigned Lo = SplatValue.getLoBits(16).getZExtValue();