diff options
author | belovdv <70999565+belovdv@users.noreply.github.com> | 2024-03-07 20:48:32 +0300 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2024-03-09 17:59:54 -0800 |
commit | 098b030310a2b6dcc778c2e1cc765be2b3b5e95a (patch) | |
tree | 2ce241f9568d427e8378c65f874b35f51b26d881 /tests/armv8/a64.rs | |
parent | 8b995b2763d4cb5c8c73913d795318c9ce7178f0 (diff) |
fix armv8 a64 decoder hint instructions
Diffstat (limited to 'tests/armv8/a64.rs')
-rw-r--r-- | tests/armv8/a64.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/armv8/a64.rs b/tests/armv8/a64.rs index cdb1265..577028e 100644 --- a/tests/armv8/a64.rs +++ b/tests/armv8/a64.rs @@ -65,7 +65,7 @@ fn test_display_misc() { ); test_display( [0x1f, 0x20, 0x03, 0xd5], - "esb" + "nop" ); } @@ -663,7 +663,7 @@ fn test_decode_chrome_entrypoint() { ); test_display( [0x1f, 0x20, 0x03, 0xd5], - "esb" + "nop" ); test_display( [0x20, 0x00, 0x1f, 0xd6], @@ -4175,7 +4175,7 @@ fn test_openblas_simd_movs() { #[test] fn test_openblas_misc_ops() { const TESTS: &[([u8; 4], &'static str)] = &[ - ([0x1f, 0x20, 0x03, 0xd5], "esb"), // executes as nop, but also a barrier + ([0x1f, 0x20, 0x03, 0xd5], "nop"), ([0xbf, 0x3a, 0x03, 0xd5], "dmb ishst"), ([0xbf, 0x3b, 0x03, 0xd5], "dmb ish"), ([0xdf, 0x3f, 0x03, 0xd5], "isb"), |