Use "_end" instead of "end" for consistency with other architectures.

This commit is contained in:
nonaka 2011-05-13 23:14:36 +00:00
parent 1ff5a5dfd6
commit 9af4d11fa4
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: brk.S,v 1.8 2004/08/21 11:30:17 rearnsha Exp $ */
/* $NetBSD: brk.S,v 1.9 2011/05/13 23:14:36 nonaka Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -33,7 +33,7 @@
#include "SYS.h"
.globl _C_LABEL(end)
.globl _C_LABEL(_end)
.globl CURBRK
#ifdef WEAK_ALIAS
@ -45,7 +45,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

View File

@ -1,4 +1,4 @@
/* $NetBSD: sbrk.S,v 1.8 2004/08/21 11:30:17 rearnsha Exp $ */
/* $NetBSD: sbrk.S,v 1.9 2011/05/13 23:14:36 nonaka Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -33,7 +33,7 @@
#include "SYS.h"
.globl _C_LABEL(end)
.globl _C_LABEL(_end)
#ifdef WEAK_ALIAS
WEAK_ALIAS(sbrk, _sbrk)
@ -44,7 +44,7 @@ WEAK_ALIAS(sbrk, _sbrk)
.globl CURBRK
.type CURBRK,#object
CURBRK:
.word _C_LABEL(end)
.word _C_LABEL(_end)
/*
* Change the data segment size