diff options
Diffstat (limited to 'test/MC/AsmParser/directive_org.s')
-rw-r--r-- | test/MC/AsmParser/directive_org.s | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/MC/AsmParser/directive_org.s b/test/MC/AsmParser/directive_org.s new file mode 100644 index 0000000..f4414c3 --- /dev/null +++ b/test/MC/AsmParser/directive_org.s @@ -0,0 +1,11 @@ +# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s + +# CHECK: TEST0: +# CHECK: .org 1, 0 +TEST0: + .org 1 + +# CHECK: TEST1: +# CHECK: .org 1, 3 +TEST1: + .org 1, 3 |