diff options
Diffstat (limited to 'test/MC/AsmParser/X86/x86_64-suffix-matching.s')
-rw-r--r-- | test/MC/AsmParser/X86/x86_64-suffix-matching.s | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/MC/AsmParser/X86/x86_64-suffix-matching.s b/test/MC/AsmParser/X86/x86_64-suffix-matching.s new file mode 100644 index 0000000000000..c4f0be2c6eab3 --- /dev/null +++ b/test/MC/AsmParser/X86/x86_64-suffix-matching.s @@ -0,0 +1,6 @@ +// RUN: llvm-mc -triple x86_64 -o - %s | FileCheck %s + +// CHECK: addl $0, %eax + add $0, %eax +// CHECK: addb $255, %al + add $0xFF, %al |