summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorkan <kan@FreeBSD.org>2007-05-19 04:36:34 +0000
committerkan <kan@FreeBSD.org>2007-05-19 04:36:34 +0000
commit45bdca2b2d931ce16a720bd0eec72d75d75a1213 (patch)
treee9c4cb2e8beabcfe4507aeef8220ec2ec17ec1e3 /lib
parent078b4aa55eb714702ede49f123472c374602a362 (diff)
downloadFreeBSD-src-45bdca2b2d931ce16a720bd0eec72d75d75a1213.zip
FreeBSD-src-45bdca2b2d931ce16a720bd0eec72d75d75a1213.tar.gz
Use built-in _end symbol insteadof 'end' for consistency with other
architectures. Linker defines end is synonym for _end.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/arm/sys/brk.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arm/sys/brk.S b/lib/libc/arm/sys/brk.S
index 9141cf0..5fdf90c 100644
--- a/lib/libc/arm/sys/brk.S
+++ b/lib/libc/arm/sys/brk.S
@@ -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
OpenPOWER on IntegriCloud