diff options
Diffstat (limited to 'test/MC/AsmParser/directive_end-2.s')
-rw-r--r-- | test/MC/AsmParser/directive_end-2.s | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/MC/AsmParser/directive_end-2.s b/test/MC/AsmParser/directive_end-2.s new file mode 100644 index 0000000..96188da --- /dev/null +++ b/test/MC/AsmParser/directive_end-2.s @@ -0,0 +1,14 @@ +# RUN: llvm-mc -triple i386-unknown-unknown %s -I %p -filetype obj -o - \ +# RUN: | llvm-readobj -t | FileCheck %s + +rock: + movl $42, %eax + +.include "directive_end.s" + +hard_place: + movl $42, %ebx + +# CHECK: Symbol { +# CHECK: Name: rock +# CHECK-NOT: Name: hard_place |