(elf_machine_load_address): Use local label.
authorAndreas Jaeger <aj@suse.de>
Mon, 22 Jul 2002 11:21:26 +0000 (11:21 +0000)
committerAndreas Jaeger <aj@suse.de>
Mon, 22 Jul 2002 11:21:26 +0000 (11:21 +0000)
sysdeps/x86_64/dl-machine.h

index 3f113f8..adf108c 100644 (file)
@@ -66,11 +66,11 @@ elf_machine_load_address (void)
      and compare it with the current value that we can get via
      an RIP relative addressing mode.  */
 
-  asm ("movq .L1(%%rip), %1\n"
+  asm ("movq 1f(%%rip), %1\n"
        "0:\tleaq _dl_start(%%rip), %0\n\t"
        "subq %1, %0\n\t"
        ".section\t.data\n"
-       ".L1:\t.quad _dl_start\n\t"
+       "1:\t.quad _dl_start\n\t"
        ".previous\n\t"
        : "=r" (addr), "=r" (tmp) : : "cc");