diff options
author | Roland McGrath <roland@gnu.org> | 2004-06-11 09:56:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-06-11 09:56:02 +0000 |
commit | b80af23ac6973e69df6cd23d221fa44fffb21e17 (patch) | |
tree | 668499346eedafb528bc44b5f9663a2987c6115c /elf/tls-macros.h | |
parent | f05a089da96014435cce5c9f17f386ba846a1a6e (diff) | |
download | glibc-b80af23ac6973e69df6cd23d221fa44fffb21e17.zip glibc-b80af23ac6973e69df6cd23d221fa44fffb21e17.tar.gz glibc-b80af23ac6973e69df6cd23d221fa44fffb21e17.tar.bz2 |
* elf/tls-macros.h [__s390x__] (TLS_LD, TLS_GD): Clobber also r14.
Diffstat (limited to 'elf/tls-macros.h')
-rw-r--r-- | elf/tls-macros.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/elf/tls-macros.h b/elf/tls-macros.h index d02e9b2..bed2e14 100644 --- a/elf/tls-macros.h +++ b/elf/tls-macros.h @@ -484,7 +484,7 @@ register void *__gp __asm__("$29"); "algr %0,%%r2\n\t" \ "lgr %%r12,%1" \ : "=&a" (__offset), "=&a" (__save12) \ - : : "cc", "0", "1", "2", "3", "4", "5" ); \ + : : "cc", "0", "1", "2", "3", "4", "5", "14" ); \ (int *) (__builtin_thread_pointer() + __offset); }) # else # define TLS_LD(x) \ @@ -497,7 +497,8 @@ register void *__gp __asm__("$29"); "brasl %%r14,__tls_get_offset@plt:tls_ldcall:" #x "\n\t" \ "lg %0,8(%0)\n\t" \ "algr %0,%%r2" \ - : "=&a" (__offset) : : "cc", "0", "1", "2", "3", "4", "5", "12" ); \ + : "=&a" (__offset) \ + : : "cc", "0", "1", "2", "3", "4", "5", "12", "14" ); \ (int *) (__builtin_thread_pointer() + __offset); }) # endif @@ -513,7 +514,7 @@ register void *__gp __asm__("$29"); "lgr %0,%%r2\n\t" \ "lgr %%r12,%1" \ : "=&a" (__offset), "=&a" (__save12) \ - : : "cc", "0", "1", "2", "3", "4", "5" ); \ + : : "cc", "0", "1", "2", "3", "4", "5", "14" ); \ (int *) (__builtin_thread_pointer() + __offset); }) # else # define TLS_GD(x) \ @@ -524,7 +525,8 @@ register void *__gp __asm__("$29"); "lg %%r2,0(%0)\n\t" \ "brasl %%r14,__tls_get_offset@plt:tls_gdcall:" #x "\n\t" \ "lgr %0,%%r2" \ - : "=&a" (__offset) : : "cc", "0", "1", "2", "3", "4", "5", "12" ); \ + : "=&a" (__offset) \ + : : "cc", "0", "1", "2", "3", "4", "5", "12", "14" ); \ (int *) (__builtin_thread_pointer() + __offset); }) # endif |