mirror of
https://github.com/RPCS3/llvm.git
synced 2025-03-07 01:57:16 +00:00
Remove redundant condition (PR32263). NFCI.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297915 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d0064ed89e
commit
a7364cf0bf
@ -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…
x
Reference in New Issue
Block a user