diff options
author | Nick Clifton <nickc@redhat.com> | 2009-02-03 14:48:32 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2009-02-03 14:48:32 +0000 |
commit | 34a0278d91d5af416424049a8a7a89b60b62ed18 (patch) | |
tree | 1be87cc34dd7dd1af6e5c5448bc5ed21fcfee579 /gas | |
parent | cf869cce6215e2b8cc0daeccf06ace32d3798bd6 (diff) | |
download | fsf-binutils-gdb-34a0278d91d5af416424049a8a7a89b60b62ed18.zip fsf-binutils-gdb-34a0278d91d5af416424049a8a7a89b60b62ed18.tar.gz fsf-binutils-gdb-34a0278d91d5af416424049a8a7a89b60b62ed18.tar.bz2 |
new files accidentally omitted from previous delta
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/gas/m68k/tls-gd-3.d | 3 | ||||
-rw-r--r-- | gas/testsuite/gas/m68k/tls-gd-3.s | 20 |
2 files changed, 23 insertions, 0 deletions
diff --git a/gas/testsuite/gas/m68k/tls-gd-3.d b/gas/testsuite/gas/m68k/tls-gd-3.d new file mode 100644 index 0000000..736794c --- /dev/null +++ b/gas/testsuite/gas/m68k/tls-gd-3.d @@ -0,0 +1,3 @@ +#as: -mcpu=5206 +#source: tls-gd-3.s +#error: .*Accessing `x' as thread-local object.* diff --git a/gas/testsuite/gas/m68k/tls-gd-3.s b/gas/testsuite/gas/m68k/tls-gd-3.s new file mode 100644 index 0000000..1b0ffbb --- /dev/null +++ b/gas/testsuite/gas/m68k/tls-gd-3.s @@ -0,0 +1,20 @@ +#NO_APP + .text + .align 2 + .globl foo + .type foo, @function +foo: + link.w %fp,#0 + move.l %a5,-(%sp) + move.l #_GLOBAL_OFFSET_TABLE_@GOTPC, %a5 + lea (-6, %pc, %a5), %a5 + + move.l x@TLSGD(%a5),%a1 + move.l x@GOT(%a5),%a1 + + move.l (%sp)+,%a5 + unlk %fp + rts + .size foo, .-foo + .comm x,4,2 + .section .note.GNU-stack,"",@progbits |