Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/arch/sh3/sys s/minbrk/_C_LABEL(__minbrk)/.



details:   https://anonhg.NetBSD.org/src/rev/5f8f252d4e13
branches:  trunk
changeset: 495754:5f8f252d4e13
user:      tsubai <tsubai%NetBSD.org@localhost>
date:      Fri Aug 04 09:19:39 2000 +0000

description:
s/minbrk/_C_LABEL(__minbrk)/.

diffstat:

 lib/libc/arch/sh3/sys/brk.S |  19 +++++++++----------
 1 files changed, 9 insertions(+), 10 deletions(-)

diffs (49 lines):

diff -r 16980fc573e1 -r 5f8f252d4e13 lib/libc/arch/sh3/sys/brk.S
--- a/lib/libc/arch/sh3/sys/brk.S       Fri Aug 04 09:01:05 2000 +0000
+++ b/lib/libc/arch/sh3/sys/brk.S       Fri Aug 04 09:19:39 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: brk.S,v 1.4 2000/06/26 06:25:44 kleink Exp $   */
+/*     $NetBSD: brk.S,v 1.5 2000/08/04 09:19:39 tsubai Exp $   */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -40,22 +40,21 @@
 
 #include <machine/asm.h>
 #if defined(SYSLIBC_SCCS) && !defined(lint)
-       RCSID("$NetBSD: brk.S,v 1.4 2000/06/26 06:25:44 kleink Exp $")
+       RCSID("$NetBSD: brk.S,v 1.5 2000/08/04 09:19:39 tsubai Exp $")
 #endif /* SYSLIBC_SCCS and not lint */
 
 #include "SYS.h"
 
-       .globl  _end
-       .globl  curbrk
-
 #ifdef WEAK_ALIAS
 WEAK_ALIAS(_brk, __brk)
 #endif
 
        .data
-       .globl  minbrk
-       .align 2
-minbrk:        .long   _end
+       .globl  _C_LABEL(__minbrk)
+       .align  2
+_C_LABEL(__minbrk):
+       .long   _end
+
        .text
 
 ENTRY(_brk)
@@ -78,8 +77,8 @@
        nop
 
 
-       .align 2
-Lminbrk:       .long   minbrk
+       .align  2
+Lminbrk:       .long   _C_LABEL(__minbrk)
 LSYS_break:    .long   SYS_break
 Lcurbrk:       .long   curbrk
 Lcerror:       .long   cerror



Home | Main Index | Thread Index | Old Index