diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/AsmParser/x86_instructions.s | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/MC/AsmParser/x86_instructions.s b/test/MC/AsmParser/x86_instructions.s index ffd2dde..57d9dec 100644 --- a/test/MC/AsmParser/x86_instructions.s +++ b/test/MC/AsmParser/x86_instructions.s @@ -16,3 +16,17 @@ movl %eax, 10(%ebp, %ebx, 4) // RUN: grep {MCInst(opcode=.*, operands=.reg:0, imm:4, reg:21, val:10, reg:0, reg:19.)} %t movl %eax, 10(, %ebx, 4) + +// FIXME: Check that this matches SUB32ri8 +// RUN: grep {MCInst(opcode=.*, operands=.reg:19, reg:0, val:1.)} %t + subl $1, %eax + +// FIXME: Check that this matches SUB32ri8 +// RUN: grep {MCInst(opcode=.*, operands=.reg:19, reg:0, val:-1.)} %t + subl $-1, %eax + +// FIXME: Check that this matches SUB32ri +// RUN: grep {MCInst(opcode=.*, operands=.reg:19, reg:0, val:256.)} %t + subl $256, %eax + + |