diff options
author | iximeow <me@iximeow.net> | 2021-07-03 15:51:22 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-07-03 15:51:22 -0700 |
commit | 7e154da8e2bd7b8892bdefe2f71c111c2135b0a3 (patch) | |
tree | b1b945803f37c48a7dd7e5a23e0656ee1d9c83b9 /test/protected_mode | |
parent | 582c4e44579d4bbb9dcec9d12c23c8b774db3cfb (diff) |
be more strict about denying invalid operands
Diffstat (limited to 'test/protected_mode')
-rw-r--r-- | test/protected_mode/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/protected_mode/mod.rs b/test/protected_mode/mod.rs index c742516..04a5676 100644 --- a/test/protected_mode/mod.rs +++ b/test/protected_mode/mod.rs @@ -1751,7 +1751,7 @@ fn test_vex() { test_instr(&[0xc4, 0b110_00001, 0b1_0111_000, 0x16, 0b00_001_010], "vmovhps xmm1, xmm0, qword [edx]"); test_invalid(&[0xc4, 0b110_00001, 0b1_0111_100, 0x16, 0b00_001_010]); test_instr(&[0xc4, 0b110_00001, 0b1_0111_001, 0x16, 0b00_001_010], "vmovhpd xmm1, xmm0, qword [edx]"); - test_instr(&[0xc4, 0b110_00001, 0b1_0111_101, 0x16, 0b00_001_010], "vmovhpd xmm1, xmm0, qword [edx]"); + test_invalid(&[0xc4, 0b110_00001, 0b1_0111_101, 0x16, 0b00_001_010]); test_invalid(&[0xc4, 0b110_00001, 0b1_0111_001, 0x16, 0b11_001_010]); test_instr(&[0xc4, 0b110_00001, 0b1_1111_000, 0x17, 0b00_001_010], "vmovhps qword [edx], xmm1"); test_invalid(&[0xc4, 0b110_00001, 0b1_1111_100, 0x17, 0b00_001_010]); |