1	.global _start
2	.global foo
3	.type foo, @function
4	.text
5
6_start:
7	# ((1 << 25) - 1) << 2
8	# call26 relocation out of range to plt stub,
9	# we need long branch veneer.
10	.skip 134217724, 0
11	bl foo
12	ret
13