Source-Changes-HG archive

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

[src/trunk]: src/sys/lib/libkern/arch/mips Until <bsd.lib.mk> is fixed, don't...



details:   https://anonhg.NetBSD.org/src/rev/9a75d0676cee
branches:  trunk
changeset: 472061:9a75d0676cee
user:      simonb <simonb%NetBSD.org@localhost>
date:      Tue Apr 20 00:45:24 1999 +0000

description:
Until <bsd.lib.mk> is fixed, don't try to guess whether or not to
use abicalls in kernel source.

diffstat:

 sys/lib/libkern/arch/mips/byte_swap_2.S |  6 +++---
 sys/lib/libkern/arch/mips/byte_swap_4.S |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (44 lines):

diff -r 8040bf7dd862 -r 9a75d0676cee sys/lib/libkern/arch/mips/byte_swap_2.S
--- a/sys/lib/libkern/arch/mips/byte_swap_2.S   Mon Apr 19 23:55:28 1999 +0000
+++ b/sys/lib/libkern/arch/mips/byte_swap_2.S   Tue Apr 20 00:45:24 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: byte_swap_2.S,v 1.2 1999/03/17 13:31:43 simonb Exp $   */
+/*     $NetBSD: byte_swap_2.S,v 1.3 1999/04/20 00:45:24 simonb Exp $   */
 
 /*-
  * Copyright (c) 1991, 1993
@@ -40,10 +40,10 @@
 
 #if defined(LIBC_SCCS) && !defined(lint)
        ASMSTR("from: @(#)htons.s       8.1 (Berkeley) 6/4/93")
-       ASMSTR("$NetBSD: byte_swap_2.S,v 1.2 1999/03/17 13:31:43 simonb Exp $")
+       ASMSTR("$NetBSD: byte_swap_2.S,v 1.3 1999/04/20 00:45:24 simonb Exp $")
 #endif /* LIBC_SCCS and not lint */
 
-#if defined(ABICALLS) && !defined(NO_ABICALLS)
+#if 0 && defined(ABICALLS)
        .abicalls
 #endif
 
diff -r 8040bf7dd862 -r 9a75d0676cee sys/lib/libkern/arch/mips/byte_swap_4.S
--- a/sys/lib/libkern/arch/mips/byte_swap_4.S   Mon Apr 19 23:55:28 1999 +0000
+++ b/sys/lib/libkern/arch/mips/byte_swap_4.S   Tue Apr 20 00:45:24 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: byte_swap_4.S,v 1.3 1999/03/17 13:31:43 simonb Exp $   */
+/*     $NetBSD: byte_swap_4.S,v 1.4 1999/04/20 00:45:24 simonb Exp $   */
 
 /*-
  * Copyright (c) 1991, 1993
@@ -40,10 +40,10 @@
 
 #if defined(LIBC_SCCS) && !defined(lint)
        ASMSTR("from: @(#)htonl.s       8.1 (Berkeley) 6/4/93")
-       ASMSTR("$NetBSD: byte_swap_4.S,v 1.3 1999/03/17 13:31:43 simonb Exp $")
+       ASMSTR("$NetBSD: byte_swap_4.S,v 1.4 1999/04/20 00:45:24 simonb Exp $")
 #endif /* LIBC_SCCS and not lint */
 
-#if defined(ABICALLS) && !defined(NO_ABICALLS)
+#if 0 && defined(ABICALLS)
        .abicalls
 #endif
 



Home | Main Index | Thread Index | Old Index