diff options
author | MITSUNARI Shigeo <[email protected]> | 2024-10-13 11:57:55 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2024-10-13 13:51:06 +0900 |
commit | eca17384c575d06474495e79fad87646bd7d067a (patch) | |
tree | 512e194effe48657ac7b8fe35c05dde64a1e3ce8 /test/test_by_xed.py | |
parent | 7af7abbf954dd729f6eb95ef63495526ffd96b77 (diff) | |
download | xbyak-eca17384c575d06474495e79fad87646bd7d067a.tar.gz xbyak-eca17384c575d06474495e79fad87646bd7d067a.zip |
add vmpsadbw for avx10.2
Diffstat (limited to 'test/test_by_xed.py')
-rw-r--r-- | test/test_by_xed.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_by_xed.py b/test/test_by_xed.py index 5b84995..afd77d8 100644 --- a/test/test_by_xed.py +++ b/test/test_by_xed.py @@ -210,6 +210,11 @@ def parseNmemonic(s): args = [] attrs = [] + # remove Xbyak::{Evex,Vex}Encoding + r = re.search(r'(,[^,]*Encoding)', s) + if r: + s = s.replace(r.group(1), '') + (s, broadcast) = parseBroadcast(s) # replace xm0 with xmm0 |