projects
/
platform
/
upstream
/
linaro-glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8470bd5
)
(elf_machine_load_address): Use local label.
author
Andreas Jaeger
<aj@suse.de>
Mon, 22 Jul 2002 11:21:26 +0000
(11:21 +0000)
committer
Andreas Jaeger
<aj@suse.de>
Mon, 22 Jul 2002 11:21:26 +0000
(11:21 +0000)
sysdeps/x86_64/dl-machine.h
patch
|
blob
|
history
diff --git
a/sysdeps/x86_64/dl-machine.h
b/sysdeps/x86_64/dl-machine.h
index
3f113f8
..
adf108c
100644
(file)
--- a/
sysdeps/x86_64/dl-machine.h
+++ b/
sysdeps/x86_64/dl-machine.h
@@
-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"
- "
.L
1:\t.quad _dl_start\n\t"
+ "1:\t.quad _dl_start\n\t"
".previous\n\t"
: "=r" (addr), "=r" (tmp) : : "cc");