Skip to content

Commit 379405a

Browse files
committed
[X86] Fix typo in X86ISD::SHUFP concatenation
1 parent c182e9d commit 379405a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58007,7 +58007,8 @@ static SDValue combineConcatVectorOps(const SDLoc &DL, MVT VT,
5800758007
case X86ISD::SHUFP: {
5800858008
// Add SHUFPD support if/when necessary.
5800958009
if (!IsSplat &&
58010-
(VT == MVT::v8f32 || (MVT::v16f32 && Subtarget.useAVX512Regs())) &&
58010+
(VT == MVT::v8f32 ||
58011+
(VT == MVT::v16f32 && Subtarget.useAVX512Regs())) &&
5801158012
llvm::all_of(Ops, [Op0](SDValue Op) {
5801258013
return Op.getOperand(2) == Op0.getOperand(2);
5801358014
})) {

0 commit comments

Comments
 (0)