From 007866fe9c5db6dfe7001acab1424b1f8d7c039a Mon Sep 17 00:00:00 2001 From: marcel Date: Wed, 30 Aug 2006 00:39:07 +0000 Subject: Prevent dead code elimination for the TP assignmient by using inline assembly. --- lib/libc/ia64/gen/_set_tp.c | 3 +-- libexec/rtld-elf/ia64/reloc.c | 5 +++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/libc/ia64/gen/_set_tp.c b/lib/libc/ia64/gen/_set_tp.c index 2419e10..901e901 100644 --- a/lib/libc/ia64/gen/_set_tp.c +++ b/lib/libc/ia64/gen/_set_tp.c @@ -29,7 +29,6 @@ void _set_tp(void *tpval) { - register void* tp __asm__("r13"); - tp = tpval; + __asm __volatile("mov r13 = %0" :: "r"(tpval)); } diff --git a/libexec/rtld-elf/ia64/reloc.c b/libexec/rtld-elf/ia64/reloc.c index 45f9ef5..a07aeb8 100644 --- a/libexec/rtld-elf/ia64/reloc.c +++ b/libexec/rtld-elf/ia64/reloc.c @@ -594,7 +594,7 @@ init_pltgot(Obj_Entry *obj) void allocate_initial_tls(Obj_Entry *list) { - register Elf_Addr** tp __asm__("r13"); + void *tpval; /* * Fix the size of the static TLS block by using the maximum @@ -603,7 +603,8 @@ allocate_initial_tls(Obj_Entry *list) */ tls_static_space = tls_last_offset + tls_last_size + RTLD_STATIC_TLS_EXTRA; - tp = allocate_tls(list, 0, 16, 16); + tpval = allocate_tls(list, 0, 16, 16); + __asm __volatile("mov r13 = %0" :: "r"(tpval)); } void *__tls_get_addr(unsigned long module, unsigned long offset) -- cgit v1.1