Source-Changes-HG archive

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

[src/trunk]: src/lib/libc/arch/sparc64/string Use unsigned compares for addre...



details:   https://anonhg.NetBSD.org/src/rev/ddc682549221
branches:  trunk
changeset: 513463:ddc682549221
user:      eeh <eeh%NetBSD.org@localhost>
date:      Wed Aug 01 05:52:12 2001 +0000

description:
Use unsigned compares for addresses.

diffstat:

 lib/libc/arch/sparc64/string/memcpy.S |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 6632623516c6 -r ddc682549221 lib/libc/arch/sparc64/string/memcpy.S
--- a/lib/libc/arch/sparc64/string/memcpy.S     Wed Aug 01 04:06:06 2001 +0000
+++ b/lib/libc/arch/sparc64/string/memcpy.S     Wed Aug 01 05:52:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: memcpy.S,v 1.1 2001/07/07 04:55:21 eeh Exp $   */
+/*     $NetBSD: memcpy.S,v 1.2 2001/08/01 05:52:12 eeh Exp $   */
 
 /*
  * Copyright (c) 2001  Eduardo E. Horvath
@@ -46,7 +46,7 @@
 #include <machine/psl.h>
 
 #if defined(LIBC_SCCS) && !defined(lint)
-       RCSID("$NetBSD: memcpy.S,v 1.1 2001/07/07 04:55:21 eeh Exp $")
+       RCSID("$NetBSD: memcpy.S,v 1.2 2001/08/01 05:52:12 eeh Exp $")
 #endif  /* LIBC_SCCS and not lint */
 
 #define        EMPTY   nop
@@ -107,7 +107,7 @@
        sub     %o1, %o0, %o3
 
        cmp     %o3, %o2
-       bl,pn   %xcc, Lovbcopy
+       blu,pn  %xcc, Lovbcopy
         cmp    %o2, BCOPY_SMALL
 Lbcopy_start:
        bge,pt  %xcc, 2f        ! if >= this many, go be fancy.



Home | Main Index | Thread Index | Old Index