diff options
author | MITSUNARI Shigeo <[email protected]> | 2023-11-10 09:53:25 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2023-11-10 09:53:25 +0900 |
commit | 3a85aadc6c7ef409ba5e674fe3fff8fa3c30d60a (patch) | |
tree | 001db242dbad2323122d4668ea732aba8094c6f8 /gen | |
parent | 16f1a5d8a6c8823e9cfc32a3843f07762711a40a (diff) | |
download | xbyak-3a85aadc6c7ef409ba5e674fe3fff8fa3c30d60a.tar.gz xbyak-3a85aadc6c7ef409ba5e674fe3fff8fa3c30d60a.zip |
pdep, pext support apx
Diffstat (limited to 'gen')
-rw-r--r-- | gen/gen_code.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gen/gen_code.cpp b/gen/gen_code.cpp index 251351c..68cb6b7 100644 --- a/gen/gen_code.cpp +++ b/gen/gen_code.cpp @@ -1734,8 +1734,8 @@ void put() } tbl[] = { { "andn", T_0F38 | T_VEX | T_NF, 0xF2 }, { "mulx", T_F2 | T_0F38 | T_VEX , 0xF6 }, - { "pdep", T_F2 | T_0F38, 0xF5 }, - { "pext", T_F3 | T_0F38, 0xF5 }, + { "pdep", T_F2 | T_0F38 | T_VEX, 0xF5 }, + { "pext", T_F3 | T_0F38 | T_VEX, 0xF5 }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { const Tbl& p = tbl[i]; |