[llvm] [X86]Support lowering for APX Promoted SHA/MOVDIR/CRC32/INVPCID instructions (PR #76786)
Shengchen Kan via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 3 19:51:34 PST 2024
================
@@ -21,21 +21,21 @@ def INVEPT32 : I<0x80, MRMSrcMem, (outs), (ins GR32:$src1, i128mem:$src2),
Requires<[Not64BitMode]>;
def INVEPT64 : I<0x80, MRMSrcMem, (outs), (ins GR64:$src1, i128mem:$src2),
"invept\t{$src2, $src1|$src1, $src2}", []>, T8, PD,
- Requires<[In64BitMode]>;
+ Requires<[In64BitMode, NoEGPR]>;
----------------
KanRobert wrote:
NoEGPR is not needed due to no pattern.
https://github.com/llvm/llvm-project/pull/76786
More information about the llvm-commits
mailing list