diff options
Diffstat (limited to 'ld/testsuite/ld-x86-64/protected4.s')
-rw-r--r-- | ld/testsuite/ld-x86-64/protected4.s | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ld/testsuite/ld-x86-64/protected4.s b/ld/testsuite/ld-x86-64/protected4.s new file mode 100644 index 0000000000..c6e41ec189 --- /dev/null +++ b/ld/testsuite/ld-x86-64/protected4.s @@ -0,0 +1,12 @@ + .text + .protected foo + .globl foo + .type foo, @function +foo: + ret + .size foo, .-foo + .globl bar + .type bar, @function +bar: + movabsq $foo@GOTOFF, %rax + .size bar, .-bar |