Remove redundant condition (PR32263). NFCI.

llvm-svn: 297915
This commit is contained in:
Simon Pilgrim 2017-03-15 23:27:43 +00:00
parent 82a41dd6c4
commit cee3fc61cb
1 changed files with 1 additions and 1 deletions

View File

@ -1006,7 +1006,7 @@ bool MipsSEDAGToDAGISel::trySelect(SDNode *Node) {
: (SplatBitSize == 64 ? Mips::FILL_D : 0)); : (SplatBitSize == 64 ? Mips::FILL_D : 0));
assert(FILLOp != 0 && "Unknown FILL Op for splat synthesis!"); 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!"); "Attempting to use fill.d on MIPS32!");
const unsigned Lo = SplatValue.getLoBits(16).getZExtValue(); const unsigned Lo = SplatValue.getLoBits(16).getZExtValue();