diff options
author | iximeow <me@iximeow.net> | 2021-03-21 02:58:09 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-03-21 02:58:09 -0700 |
commit | da8501f8463a106aec2d4389d71ab86add23a51a (patch) | |
tree | d1047a9200c8f745ff5e392a9680bf450520df2a /test | |
parent | 5223427b217cc567deb55ea420b8da58aea64d68 (diff) |
add missing vpmaxuw, remove nonsense avx mov
Diffstat (limited to 'test')
-rw-r--r-- | test/long_mode/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/long_mode/mod.rs b/test/long_mode/mod.rs index fff10a2..fa2e11d 100644 --- a/test/long_mode/mod.rs +++ b/test/long_mode/mod.rs @@ -1550,6 +1550,7 @@ fn test_vex() { test_instr(&[0xc5, 0xe1, 0x55, 0x03], "vandnps xmm0, xmm3, [rbx]"); test_instr(&[0xc5, 0xe0, 0x56, 0x03], "vorpd xmm0, xmm3, [rbx]"); test_instr(&[0xc5, 0xe1, 0x56, 0x03], "vorps xmm0, xmm3, [rbx]"); + test_instr(&[0xc4, 0xa2, 0x15, 0x3e, 0x14, 0xb9], "vpmaxuw ymm2, ymm13, [rcx + r15 * 4]"); } #[test] |