Module Name: src
Committed By: matt
Date: Tue Aug 18 06:55:48 UTC 2009
Modified Files:
src/lib/libc/arch/mips/string [matt-nb5-mips64]: Makefile.inc bcmp.S
index.S rindex.S
Log Message:
Enable use of memset2.c/bzero2.c
Cleanup RCSIDs
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.50.1 src/lib/libc/arch/mips/string/Makefile.inc
cvs rdiff -u -r1.8.46.1 -r1.8.46.2 src/lib/libc/arch/mips/string/bcmp.S
cvs rdiff -u -r1.8.34.1 -r1.8.34.2 src/lib/libc/arch/mips/string/index.S
cvs rdiff -u -r1.7.46.1 -r1.7.46.2 src/lib/libc/arch/mips/string/rindex.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/arch/mips/string/Makefile.inc
diff -u src/lib/libc/arch/mips/string/Makefile.inc:1.2 src/lib/libc/arch/mips/string/Makefile.inc:1.2.50.1
--- src/lib/libc/arch/mips/string/Makefile.inc:1.2 Tue Oct 10 21:51:54 2000
+++ src/lib/libc/arch/mips/string/Makefile.inc Tue Aug 18 06:55:48 2009
@@ -1,7 +1,9 @@
-# $NetBSD: Makefile.inc,v 1.2 2000/10/10 21:51:54 jeffs Exp $
+# $NetBSD: Makefile.inc,v 1.2.50.1 2009/08/18 06:55:48 matt Exp $
-SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.c memcmp.c memset.c \
- memcpy.S memmove.S \
- rindex.S strcat.c strcmp.S strcpy.c strcspn.c strlen.S \
+SRCS+= bcmp.S bcopy.S bzero2.c \
+ ffs.S index.S \
+ memchr.c memcmp.c memset2.c memcpy.S memmove.S \
+ rindex.S \
+ strcat.c strcmp.S strcpy.c strcspn.c strlen.S \
strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
strspn.c strstr.c swab.c
Index: src/lib/libc/arch/mips/string/bcmp.S
diff -u src/lib/libc/arch/mips/string/bcmp.S:1.8.46.1 src/lib/libc/arch/mips/string/bcmp.S:1.8.46.2
--- src/lib/libc/arch/mips/string/bcmp.S:1.8.46.1 Sun Aug 16 03:36:02 2009
+++ src/lib/libc/arch/mips/string/bcmp.S Tue Aug 18 06:55:48 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: bcmp.S,v 1.8.46.1 2009/08/16 03:36:02 matt Exp $ */
+/* $NetBSD: bcmp.S,v 1.8.46.2 2009/08/18 06:55:48 matt Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -37,8 +37,11 @@
#include <machine/endian.h> /* LWLO/LWHI, SWLO/SWHI */
#if defined(LIBC_SCCS) && !defined(lint)
- /* RCSID("from: @(#)bcmp.s 8.1 (Berkeley) 6/4/93") */
- RCSID("$NetBSD: bcmp.S,v 1.8.46.1 2009/08/16 03:36:02 matt Exp $")
+#if 0
+ RCSID("from: @(#)bcmp.s 8.1 (Berkeley) 6/4/93")
+#else
+ RCSID("$NetBSD: bcmp.S,v 1.8.46.2 2009/08/18 06:55:48 matt Exp $")
+#endif
#endif /* LIBC_SCCS and not lint */
/* bcmp(s1, s2, n) */
Index: src/lib/libc/arch/mips/string/index.S
diff -u src/lib/libc/arch/mips/string/index.S:1.8.34.1 src/lib/libc/arch/mips/string/index.S:1.8.34.2
--- src/lib/libc/arch/mips/string/index.S:1.8.34.1 Sun Aug 16 03:36:02 2009
+++ src/lib/libc/arch/mips/string/index.S Tue Aug 18 06:55:48 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: index.S,v 1.8.34.1 2009/08/16 03:36:02 matt Exp $ */
+/* $NetBSD: index.S,v 1.8.34.2 2009/08/18 06:55:48 matt Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -35,8 +35,11 @@
#include <mips/asm.h>
#if defined(LIBC_SCCS) && !defined(lint)
- /* RCSID("from: @(#)index.s 8.1 (Berkeley) 6/4/93") */
- RCSID("$NetBSD: index.S,v 1.8.34.1 2009/08/16 03:36:02 matt Exp $")
+#if 0
+ RCSID("from: @(#)index.s 8.1 (Berkeley) 6/4/93")
+#else
+ RCSID("$NetBSD: index.S,v 1.8.34.2 2009/08/18 06:55:48 matt Exp $")
+#endif
#endif /* LIBC_SCCS and not lint */
LEAF(index)
Index: src/lib/libc/arch/mips/string/rindex.S
diff -u src/lib/libc/arch/mips/string/rindex.S:1.7.46.1 src/lib/libc/arch/mips/string/rindex.S:1.7.46.2
--- src/lib/libc/arch/mips/string/rindex.S:1.7.46.1 Sun Aug 16 03:36:02 2009
+++ src/lib/libc/arch/mips/string/rindex.S Tue Aug 18 06:55:48 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: rindex.S,v 1.7.46.1 2009/08/16 03:36:02 matt Exp $ */
+/* $NetBSD: rindex.S,v 1.7.46.2 2009/08/18 06:55:48 matt Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -35,8 +35,11 @@
#include <mips/asm.h>
#if defined(LIBC_SCCS) && !defined(lint)
- /* RCSID("from: @(#)rindex.s 8.1 (Berkeley) 6/4/93") */
- RCSID("$NetBSD: rindex.S,v 1.7.46.1 2009/08/16 03:36:02 matt Exp $")
+#if 0
+ RCSID("from: @(#)rindex.s 8.1 (Berkeley) 6/4/93")
+#else
+ RCSID("$NetBSD: rindex.S,v 1.7.46.2 2009/08/18 06:55:48 matt Exp $")
+#endif
#endif /* LIBC_SCCS and not lint */
LEAF(rindex)