forked from OSchip/llvm-project
Remove redundant condition (PR32263). NFCI.
llvm-svn: 297915
This commit is contained in:
parent
82a41dd6c4
commit
cee3fc61cb
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue