source: binutils/trunk/ld/testsuite/ld-i386/pr20253-2d.S@ 1973

Last change on this file since 1973 was 1973, checked in by Silvan Scherrer, 8 years ago

binutils: update trunk to version 2.27

File size: 1019 bytes
Line 
1 .text
2 .type implementation1, @function
3implementation1:
4 movl $1, %eax
5 ret
6 .size implementation1, .-implementation1
7 .type implementation2, @function
8implementation2:
9 movl $2, %eax
10 ret
11 .size implementation2, .-implementation2
12 .type resolver2, @function
13resolver2:
14 movl $implementation2, %eax
15 ret
16 .size resolver2, .-resolver2
17 .type func2, @gnu_indirect_function
18 .set func2,resolver2
19 .type resolver1, @function
20resolver1:
21 movl $implementation1, %eax
22 ret
23 .size resolver1, .-resolver1
24 .globl func1
25 .type func1, @gnu_indirect_function
26 .set func1,resolver1
27 .globl get_func2
28 .type get_func2, @function
29get_func2:
30 movl func2@GOT, %eax
31 ret
32 .size get_func2, .-get_func2
33 .globl call_func2
34 .type call_func2, @function
35call_func2:
36 jmp *func2@GOT
37 .size call_func2, .-call_func2
38 .globl func2_p
39#ifdef CHECK_PLT
40 .section .rodata,"a",@progbits
41#else
42 .section .data.rel,"aw",@progbits
43#endif
44 .align 4
45 .type func2_p, @object
46 .size func2_p, 4
47func2_p:
48 .long func2
49 .section .note.GNU-stack,"",@progbits
Note: See TracBrowser for help on using the repository browser.