diff options
author | Andreas Schwab <schwab@suse.de> | 2019-08-12 11:29:29 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2019-12-09 12:05:26 +0100 |
commit | 7badf7b06fe796b3f549663d0d65d3012a7e0457 (patch) | |
tree | bd60978c5d04031049586f7d4e3f2d43b6d04148 /sysdeps/riscv/start.S | |
parent | cae1635a70aff76117e3b4d6cead86606662b0fc (diff) | |
download | glibc-7badf7b06fe796b3f549663d0d65d3012a7e0457.zip glibc-7badf7b06fe796b3f549663d0d65d3012a7e0457.tar.gz glibc-7badf7b06fe796b3f549663d0d65d3012a7e0457.tar.bz2 |
sysdeps/riscv/start.S: rename .Lload_gp to load_gp (bug 24376)
Renaming the symbol keeps the label in the symbol table as a normal local
label, so that `objdump -d' can pick it up as an anchor.
Diffstat (limited to 'sysdeps/riscv/start.S')
-rw-r--r-- | sysdeps/riscv/start.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/riscv/start.S b/sysdeps/riscv/start.S index bcbce58..dee9841 100644 --- a/sysdeps/riscv/start.S +++ b/sysdeps/riscv/start.S @@ -47,7 +47,7 @@ ENTRY (ENTRY_POINT) .cfi_label to force starting the FDE. */ .cfi_label .Ldummy cfi_undefined (ra) - call .Lload_gp + call load_gp mv a5, a0 /* rtld_fini. */ /* main may be in a shared library. */ la a0, main @@ -68,7 +68,7 @@ END (ENTRY_POINT) needs to be initialized before calling __libc_start_main in that case. So we redundantly initialize it at the beginning of _start. */ -.Lload_gp: +load_gp: .option push .option norelax lla gp, __global_pointer$ @@ -76,7 +76,7 @@ END (ENTRY_POINT) ret .section .preinit_array,"aw" - .dc.a .Lload_gp + .dc.a load_gp /* Define a symbol for the first piece of initialized data. */ .data |