aboutsummaryrefslogtreecommitdiffhomepage
path: root/gen
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2023-11-10 09:53:25 +0900
committerMITSUNARI Shigeo <[email protected]>2023-11-10 09:53:25 +0900
commit3a85aadc6c7ef409ba5e674fe3fff8fa3c30d60a (patch)
tree001db242dbad2323122d4668ea732aba8094c6f8 /gen
parent16f1a5d8a6c8823e9cfc32a3843f07762711a40a (diff)
downloadxbyak-3a85aadc6c7ef409ba5e674fe3fff8fa3c30d60a.tar.gz
xbyak-3a85aadc6c7ef409ba5e674fe3fff8fa3c30d60a.zip
pdep, pext support apx
Diffstat (limited to 'gen')
-rw-r--r--gen/gen_code.cpp4
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];