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:
Brooks Moses 2014-11-24 16:24:58 -08:00
parent 6933c27e9c
commit 467fec0bb4
2 changed files with 6 additions and 6 deletions

View File

@ -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]

View File

@ -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