Skip to content

Commit 52fe5f6

Browse files
committed
Drop VPBLENDWY handling (will be added back in a future patch with test coverage)
1 parent 4effe69 commit 52fe5f6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

llvm/lib/Target/X86/X86FixupInstTuning.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,10 +292,9 @@ bool X86FixupInstTuningPass::processInstruction(
292292

293293
case X86::VPBLENDWrri:
294294
// TODO: Add X86::VPBLENDWrmi handling
295-
return ProcessBLENDWToBLENDD(X86::VPBLENDDrri, 4);
296-
case X86::VPBLENDWYrri:
295+
// TODO: Add X86::VPBLENDWYrri handling
297296
// TODO: Add X86::VPBLENDWYrmi handling
298-
return ProcessBLENDWToBLENDD(X86::VPBLENDDYrmi, 8);
297+
return ProcessBLENDWToBLENDD(X86::VPBLENDDrri, 4);
299298

300299
case X86::VPERMILPDri:
301300
return ProcessVPERMILPDri(X86::VSHUFPDrri);

0 commit comments

Comments
 (0)