aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/ELF/strtab-suffix-opt.s
blob: eb5da8a0155230b62cb5544103cd61482e21797f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)