diff options
| -rw-r--r-- | test/arch/x86/arch.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index 8ea0f65f..022d387e 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -765,6 +765,11 @@ reg_tests = [ (m32, "00000000 CALL 0x6655:0xFF332211", "9a112233FF5566"), + (m32, "00000000 CALL DWORD PTR [0xFFFFFFA3]", + "FF1DA3FFFFFF"), + (m64, "00000000 CALL QWORD PTR [RIP+0xFFFFFFFFFFFFFFA3]", + "FF1DA3FFFFFF"), + (m16, "00000000 CBW", "98"), @@ -2471,6 +2476,8 @@ reg_tests = [ (m32, "00000000 COMISD XMM7, XMM6", "660F2FFE"), + + ] |