From ec1d76f6adfe82ca822534c487dd9f0db5ebc573 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 26 Jul 2026 08:20:00 +0000 Subject: differential test should tolerate a few more differences --- tests/armv7/thumb.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests') diff --git a/tests/armv7/thumb.rs b/tests/armv7/thumb.rs index 998b9e5..d9ecda6 100644 --- a/tests/armv7/thumb.rs +++ b/tests/armv7/thumb.rs @@ -497,6 +497,11 @@ fn test_decode_bcc_cases() { &[0x80, 0x47], "blx r0" ); + // TODO: at the bare minimum, ARMv8-M decodes this as "blxns r0". + test_display( + &[0x84, 0x47], + "blx r0" + ); test_display( &[0x88, 0x47], "blx r1" @@ -805,6 +810,7 @@ fn test_decode_bx_cases() { &[0x03, 0x47], "bx r0" ); + // TODO: at the bare minimum, ARMv8-M decodes this as "bxns r0". test_display( &[0x04, 0x47], "bx r0" -- cgit v1.1