aboutsummaryrefslogtreecommitdiff
path: root/test/long_mode/mod.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2021-06-27 01:19:52 -0700
committeriximeow <me@iximeow.net>2021-06-27 01:19:52 -0700
commit1e230284c3bdeb5d3e71b5e058481ca0bf4d578e (patch)
treed88692d97b10c6da83d71dc2ffc311a842d6cb53 /test/long_mode/mod.rs
parentdc4de3f7678218b29075aa9f24bfb06b5cb4df75 (diff)
all tests now passing for long mode
Diffstat (limited to 'test/long_mode/mod.rs')
-rw-r--r--test/long_mode/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/long_mode/mod.rs b/test/long_mode/mod.rs
index a3ad3a3..289ab77 100644
--- a/test/long_mode/mod.rs
+++ b/test/long_mode/mod.rs
@@ -1402,9 +1402,9 @@ fn test_misc() {
#[test]
fn evex() {
- test_display(&[0x62, 0xf2, 0x7d, 0x48, 0x2a, 0x44, 0x40, 0x01], "vmovntdqa zmm0, zmmword [rax + rax*2 + 0x40]");
- test_display(&[0x62, 0xf2, 0x7d, 0x08, 0x2a, 0x44, 0x40, 0x01], "vmovntdqa xmm0, xmmword [rax + rax*2 + 0x10]");
- test_display(&[0x62, 0xf2, 0x7d, 0x1d, 0x66, 0x50, 0x01, 0x11], "vfpclassps");
+ test_display(&[0x62, 0xf2, 0x7d, 0x48, 0x2a, 0x44, 0x40, 0x01], "vmovntdqa zmm0, zmmword [rax + rax * 2 + 0x40]");
+ test_display(&[0x62, 0xf2, 0x7d, 0x08, 0x2a, 0x44, 0x40, 0x01], "vmovntdqa xmm0, xmmword [rax + rax * 2 + 0x10]");
+ test_invalid(&[0x62, 0xf2, 0x7d, 0x1d, 0x66, 0x50, 0x01, 0x11]);
}
#[test]