diff options
author | Jonas Schievink <jonasschievink@gmail.com> | 2021-09-14 15:57:17 +0200 |
---|---|---|
committer | iximeow <git@iximeow.net> | 2021-09-14 20:01:22 -0700 |
commit | 7fee2c5dafb84ee93ddb6a8f582e99d445c82677 (patch) | |
tree | cfcf6e14afafb64ea3816be717370e217d4ae1bf /test/armv7/thumb.rs | |
parent | 3552a2d8df03f9214a351ad7901281c76ef503bf (diff) |
Fix display of post-index writeback operands
Diffstat (limited to 'test/armv7/thumb.rs')
-rw-r--r-- | test/armv7/thumb.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/armv7/thumb.rs b/test/armv7/thumb.rs index 4c5c4a1..fafc65c 100644 --- a/test/armv7/thumb.rs +++ b/test/armv7/thumb.rs @@ -3579,6 +3579,10 @@ fn test_decode_str_32b_cases() { &[0xe3, 0xe9, 0x7e, 0x5a], "strd r5, r10, [r3, 0x1f8]!" ); + test_display( + &[0x41, 0xf8, 0x04, 0x2b], + "str.w r2, [r1], 0x4" + ); } #[test] |