Add 2 ifunc tests for i386 and x86-64
[deliverable/binutils-gdb.git] / ld / testsuite / ld-ifunc / ifunc-22-i386.s
1 .text
2 .type start,"function"
3 .global start
4 start:
5 .type _start,"function"
6 .global _start
7 _start:
8 .type __start,"function"
9 .global __start
10 __start:
11 .type __start,"function"
12 call .L6
13 .L6:
14 popl %ebx
15 addl $_GLOBAL_OFFSET_TABLE_+[.-.L6], %ebx
16 mov foo@GOT(%ebx), %eax
17 mov bar@GOT(%ebx), %eax
18 .global foo
19 .type foo, %gnu_indirect_function
20 foo:
21 ret
22 .type bar, %function
23 bar:
24 ret
This page took 0.030715 seconds and 5 git commands to generate.