diff options
Diffstat (limited to 'ld/testsuite/ld-sh/fdpic-plt.s')
-rw-r--r-- | ld/testsuite/ld-sh/fdpic-plt.s | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ld/testsuite/ld-sh/fdpic-plt.s b/ld/testsuite/ld-sh/fdpic-plt.s new file mode 100644 index 0000000..e873d3e --- /dev/null +++ b/ld/testsuite/ld-sh/fdpic-plt.s @@ -0,0 +1,11 @@ + .text + .globl f + .type f,@function +f: + mov.l .L1, r0 + mov.l .L2, r1 + .align 2 +.L1: + .long foo@PLT +.L2: + .long bar@PLT |