From cee3fc61cb57166d38b4b23c3ed268284db76239 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Wed, 15 Mar 2017 23:27:43 +0000 Subject: [PATCH] Remove redundant condition (PR32263). NFCI. llvm-svn: 297915 --- llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp b/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp index dfecbc8fcec2..9e854f8db6dd 100644 --- a/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp +++ b/llvm/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();