aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/generic/libc-start.c5
-rw-r--r--sysdeps/powerpc/powerpc64/dl-machine.h4
2 files changed, 4 insertions, 5 deletions
diff --git a/sysdeps/generic/libc-start.c b/sysdeps/generic/libc-start.c
index a6dbebe123..b79c803d55 100644
--- a/sysdeps/generic/libc-start.c
+++ b/sysdeps/generic/libc-start.c
@@ -158,12 +158,11 @@ BP_SYM (__libc_start_main) (int (*main) (int, char **, char **),
/* One less thread. Decrement the counter. If it is zero we
terminate the entire process. */
result = 0;
- int *const ptr;
# ifdef SHARED
- ptr = __libc_pthread_functions.ptr_nthreads;
+ int *const ptr = __libc_pthread_functions.ptr_nthreads;
# else
extern int __nptl_nthreads __attribute ((weak));
- ptr = &__nptl_nthreads;
+ int *const ptr = &__nptl_nthreads;
# endif
if (! atomic_decrement_and_test (ptr))
diff --git a/sysdeps/powerpc/powerpc64/dl-machine.h b/sysdeps/powerpc/powerpc64/dl-machine.h
index 87982638ee..93cbc8b168 100644
--- a/sysdeps/powerpc/powerpc64/dl-machine.h
+++ b/sysdeps/powerpc/powerpc64/dl-machine.h
@@ -610,14 +610,14 @@ elf_machine_rela (struct link_map *map,
# endif
return;
- case R_PPC_DTPREL64:
+ case R_PPC64_DTPREL64:
/* During relocation all TLS symbols are defined and used.
Therefore the offset is already correct. */
# ifndef RTLD_BOOTSTRAP
*reloc_addr = TLS_DTPREL_VALUE (sym, reloc);
# endif
break;
- case R_PPC_TPREL64:
+ case R_PPC64_TPREL64:
# ifndef RTLD_BOOTSTRAP
if (sym_map)
{