1# test for call26 relaxation via linker stubs 2 3.globl text0 4.section text0, "ax", @progbits 5 call func0 # in same section 6 call func1 # in nearby section 7 call func2a # in distant section 8 jmpi func2b # also in distant section 9 10func0: 11 ret 12 13.section text1, "ax", @progbits 14func1: 15 nop 16 nop 17 call func2a # in distant section 18 ret 19 20.section text2, "ax", @progbits 21func2a: 22 nop 23 nop 24 nop 25 ret 26func2b: 27 nop 28