diff options
author | iximeow <me@iximeow.net> | 2021-12-29 01:58:36 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-12-29 01:58:36 -0800 |
commit | d040eddf4f31583032b27d3dd51cc341a14e7299 (patch) | |
tree | e84321ff8944ce1437ecd100c0a613c55afc66bb /test/armv8/a64.rs | |
parent | 611a375a524fcdee098ae7fae00c5498ff0d1465 (diff) |
and sve should error for now
Diffstat (limited to 'test/armv8/a64.rs')
-rw-r--r-- | test/armv8/a64.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/armv8/a64.rs b/test/armv8/a64.rs index c7bddf7..2ee09c7 100644 --- a/test/armv8/a64.rs +++ b/test/armv8/a64.rs @@ -46,6 +46,11 @@ fn test_neon() { } #[test] +fn test_sve() { + test_err([0x00, 0x00, 0x00, 0x04], DecodeError::IncompleteDecoder); +} + +#[test] fn test_unpredictable() { // could be stx/ldx but Lo1 is `x1` and invalid. test_err([0x00, 0x00, 0x20, 0x08], DecodeError::InvalidOpcode); |