diff options
Diffstat (limited to 'test/MC/ELF/strtab-suffix-opt.s')
-rw-r--r-- | test/MC/ELF/strtab-suffix-opt.s | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/MC/ELF/strtab-suffix-opt.s b/test/MC/ELF/strtab-suffix-opt.s new file mode 100644 index 0000000..eb5da8a --- /dev/null +++ b/test/MC/ELF/strtab-suffix-opt.s @@ -0,0 +1,21 @@ +// RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu %s -o - | llvm-readobj -symbols | FileCheck %s + + .text + .globl foobar + .align 16, 0x90 + .type foobar,@function +foobar: + pushl %ebp + movl %esp, %ebp + subl $8, %esp + calll foo + calll bar + addl $8, %esp + popl %ebp + retl +.Ltmp3: + .size foobar, .Ltmp3-foobar + +// CHECK: Name: foobar (1) +// CHECK: Name: bar (4) +// CHECK: Name: foo (8) |