summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-arm/arm-lib-plt32.s
blob: d6c4787a6dcd6eda56db18e5a089bc259b179741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
	.text

	.globl lib_func1
	.type lib_func1, %function
lib_func1:
	mov	ip, sp
	stmdb	sp!, {r11, ip, lr, pc}
	bl	app_func2(PLT)
	ldmia	sp, {r11, sp, lr}
	bx lr
	.size lib_func1, . - lib_func1

	.globl lib_func2
	.type lib_func2, %function
lib_func2:
	bx lr
	.size lib_func2, . - lib_func2