aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-arm/ifunc-17.s
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-arm/ifunc-17.s')
-rw-r--r--ld/testsuite/ld-arm/ifunc-17.s24
1 files changed, 24 insertions, 0 deletions
diff --git a/ld/testsuite/ld-arm/ifunc-17.s b/ld/testsuite/ld-arm/ifunc-17.s
new file mode 100644
index 0000000..75c4c56
--- /dev/null
+++ b/ld/testsuite/ld-arm/ifunc-17.s
@@ -0,0 +1,24 @@
+ .syntax unified
+ .arch armv6t2
+
+ .global appfunc1
+ .type appfunc1,%gnu_indirect_function
+ .thumb
+appfunc1:
+ mov pc,lr
+ .size appfunc1,.-appfunc1
+
+ .global appfunc2
+ .type appfunc2,%gnu_indirect_function
+ .thumb
+appfunc2:
+ mov pc,lr
+ .size appfunc2,.-appfunc2
+
+ .global _start
+ .type _start,%function
+ .thumb
+_start:
+ bl appfunc1(PLT)
+ .word appfunc2(GOT)
+ .size _start,.-_start