mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
sysdeps/x86_64/start.S doesn't have a .size elf directive for _start.
This tripped up some analysis I was doing. This patch is the straightforward fix. I see no regressions on a "make check" using ENTRY and END.
This commit is contained in:
parent
6933c27e9c
commit
467fec0bb4
@ -1,3 +1,7 @@
|
||||
2014-11-24 Sterling Augustine <saugustine@google.com>
|
||||
|
||||
* sysdeps/x86_64/start.S (_start): Use ENTRY and END macros.
|
||||
|
||||
2014-11-24 Ryan Cumming <etaoins@gmail.com>
|
||||
|
||||
[BZ #17608]
|
||||
|
@ -55,11 +55,7 @@
|
||||
|
||||
#include <sysdep.h>
|
||||
|
||||
.text
|
||||
.globl _start
|
||||
.type _start,@function
|
||||
_start:
|
||||
cfi_startproc
|
||||
ENTRY (_start)
|
||||
/* Clearing frame pointer is insufficient, use CFI. */
|
||||
cfi_undefined (rip)
|
||||
/* Clear the frame pointer. The ABI suggests this be done, to mark
|
||||
@ -123,7 +119,7 @@ _start:
|
||||
#endif
|
||||
|
||||
hlt /* Crash if somehow `exit' does return. */
|
||||
cfi_endproc
|
||||
END (_start)
|
||||
|
||||
/* Define a symbol for the first piece of initialized data. */
|
||||
.data
|
||||
|
Loading…
Reference in New Issue
Block a user