diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-07-31 16:44:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-07-31 16:44:38 +0000 |
commit | 960095134b82c023a53f082d80f8811172108af2 (patch) | |
tree | 509033a69f365068a8e855db86f5e7e5fc508fa4 | |
parent | 541858d04a7621183f51fa91501f9d7e15a17a8d (diff) | |
download | glibc-960095134b82c023a53f082d80f8811172108af2.tar glibc-960095134b82c023a53f082d80f8811172108af2.tar.gz glibc-960095134b82c023a53f082d80f8811172108af2.tar.bz2 glibc-960095134b82c023a53f082d80f8811172108af2.zip |
helper variable into .data.rel.ro. Remove unnecessary label.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | sysdeps/x86_64/dl-machine.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ 2005-07-31 Ulrich Drepper <drepper@redhat.com> * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Move - helper variable into .data.rel.ro. + helper variable into .data.rel.ro. Remove unnecessary label. 2005-07-31 Andreas Jaeger <aj@suse.de> diff --git a/sysdeps/x86_64/dl-machine.h b/sysdeps/x86_64/dl-machine.h index 6cf532a995..40291be08c 100644 --- a/sysdeps/x86_64/dl-machine.h +++ b/sysdeps/x86_64/dl-machine.h @@ -69,7 +69,7 @@ elf_machine_load_address (void) an RIP relative addressing mode. */ asm ("movq 1f(%%rip), %1\n" - "0:\tleaq _dl_start(%%rip), %0\n\t" + "leaq _dl_start(%%rip), %0\n\t" "subq %1, %0\n\t" ".section\t.data.rel.ro\n" "1:\t.quad _dl_start\n\t" |