Module Name:    src
Committed By:   christos
Date:           Sun Mar 17 02:12:41 UTC 2013

Modified Files:
        src/common/lib/libc/arch/sparc64/string: memset.S

Log Message:
add RCSID; use clr for pattern


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/common/lib/libc/arch/sparc64/string/memset.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/common/lib/libc/arch/sparc64/string/memset.S
diff -u src/common/lib/libc/arch/sparc64/string/memset.S:1.1 src/common/lib/libc/arch/sparc64/string/memset.S:1.2
--- src/common/lib/libc/arch/sparc64/string/memset.S:1.1	Sat Mar 16 20:42:32 2013
+++ src/common/lib/libc/arch/sparc64/string/memset.S	Sat Mar 16 22:12:41 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: memset.S,v 1.1 2013/03/17 00:42:32 christos Exp $	*/
+/*	$NetBSD: memset.S,v 1.2 2013/03/17 02:12:41 christos Exp $	*/
 
 /*
  * Copyright (c) 1996-2002 Eduardo Horvath
@@ -24,6 +24,10 @@
  *
  */
 #include "strmacros.h"
+#if defined(LIBC_SCCS) && !defined(lint)
+RCSID("$NetBSD: memset.S,v 1.2 2013/03/17 02:12:41 christos Exp $")
+#endif  /* LIBC_SCCS and not lint */
+
 
 /*
  * XXXXXXXXXXXXXXXXXXXX
@@ -49,7 +53,7 @@
 ENTRY(bzero)
 	! %o0 = addr, %o1 = len
 	mov	%o1, %o2
-	mov	0, %o1
+	clr	%o1			! ser pattern
 #endif	
 ENTRY(memset)
 	! %o0 = addr, %o1 = pattern, %o2 = len

Reply via email to