diff options
Diffstat (limited to 'ld/testsuite/ld-ifunc/ifunc-11-i386.s')
-rw-r--r-- | ld/testsuite/ld-ifunc/ifunc-11-i386.s | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ld/testsuite/ld-ifunc/ifunc-11-i386.s b/ld/testsuite/ld-ifunc/ifunc-11-i386.s index 06f5924..e0e4740 100644 --- a/ld/testsuite/ld-ifunc/ifunc-11-i386.s +++ b/ld/testsuite/ld-ifunc/ifunc-11-i386.s @@ -3,9 +3,11 @@ foo: .global foo movl ifunc@GOT(%ecx), %eax - movl ifunc@GOTOFF(%ecx), %eax + movl ifunc@GOTOFF(%ecx), %eax call ifunc@PLT call ifunc + movl xxx@GOT(%ecx), %eax + movl xxx, %eax ret .section .text.bar,"ax",@progbits @@ -16,6 +18,10 @@ bar: .section .text.ifunc,"ax",@progbits .type ifunc, @gnu_indirect_function - .global ifunc + .global ifunc ifunc: ret + + .section .data.foo,"aw",@progbits +xxx: + .long ifunc |