mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
Use built-in _end symbol insteadof 'end' for consistency with other
architectures. Linker defines end is synonym for _end.
This commit is contained in:
parent
94942af266
commit
5c0e10ecce
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=169722
@ -35,7 +35,7 @@
|
||||
__FBSDID("$FreeBSD$");
|
||||
#include "SYS.h"
|
||||
|
||||
.globl _C_LABEL(end)
|
||||
.globl _C_LABEL(_end)
|
||||
.globl CURBRK
|
||||
|
||||
#ifdef WEAK_ALIAS
|
||||
@ -47,7 +47,7 @@ WEAK_ALIAS(brk, _brk)
|
||||
.globl _C_LABEL(minbrk)
|
||||
.type _C_LABEL(minbrk),#object
|
||||
_C_LABEL(minbrk):
|
||||
.word _C_LABEL(end)
|
||||
.word _C_LABEL(_end)
|
||||
|
||||
/*
|
||||
* Change the data segment size
|
||||
|
Loading…
Reference in New Issue
Block a user