Source-Changes-HG archive

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

[src/trunk]: src/lib/libc/arch/hppa Even more trailing whitespace



details:   https://anonhg.NetBSD.org/src/rev/3589db3fa5ad
branches:  trunk
changeset: 932260:3589db3fa5ad
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sun May 03 15:29:22 2020 +0000

description:
Even more trailing whitespace

diffstat:

 lib/libc/arch/hppa/gen/__setjmp14.S |   8 ++++----
 lib/libc/arch/hppa/string/bzero.S   |  14 +++++++-------
 lib/libc/arch/hppa/string/ffs.S     |   4 ++--
 lib/libc/arch/hppa/string/strlcpy.S |  14 +++++++-------
 lib/libc/arch/hppa/sys/brk.S        |   6 +++---
 5 files changed, 23 insertions(+), 23 deletions(-)

diffs (175 lines):

diff -r 4d87e977cdad -r 3589db3fa5ad lib/libc/arch/hppa/gen/__setjmp14.S
--- a/lib/libc/arch/hppa/gen/__setjmp14.S       Sun May 03 15:27:06 2020 +0000
+++ b/lib/libc/arch/hppa/gen/__setjmp14.S       Sun May 03 15:29:22 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: __setjmp14.S,v 1.6 2016/07/16 09:51:13 skrll Exp $     */
+/*     $NetBSD: __setjmp14.S,v 1.7 2020/05/03 15:29:22 skrll Exp $     */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
 #include <machine/psl.h>
 
 #if defined(LIBC_SCCS) && !defined(lint)
-       RCSID("$NetBSD: __setjmp14.S,v 1.6 2016/07/16 09:51:13 skrll Exp $")
+       RCSID("$NetBSD: __setjmp14.S,v 1.7 2020/05/03 15:29:22 skrll Exp $")
 #endif /* LIBC_SCCS and not lint */
 
 /*
@@ -112,9 +112,9 @@
        ldi     1, %r20                 ; SS_ONSTACK
        and     %r1, %r20, %r1
        stw     %r1, 0(%arg0)           ; sc.sc_onstack
-       
+
        /* Get the signal mask. */
-       ldo     40(%arg0), %arg2        ; oset = &sc.sc_mask    
+       ldo     40(%arg0), %arg2        ; oset = &sc.sc_mask
        copy    %r0, %arg1              ; set = NULL
        bl      __sigprocmask14, %rp
        copy    %r0, %arg0              ; action = 0 <ignored>
diff -r 4d87e977cdad -r 3589db3fa5ad lib/libc/arch/hppa/string/bzero.S
--- a/lib/libc/arch/hppa/string/bzero.S Sun May 03 15:27:06 2020 +0000
+++ b/lib/libc/arch/hppa/string/bzero.S Sun May 03 15:29:22 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bzero.S,v 1.2 2003/10/06 05:30:21 matt Exp $   */
+/*     $NetBSD: bzero.S,v 1.3 2020/05/03 15:29:22 skrll Exp $  */
 
 /*     $OpenBSD: bzero.S,v 1.3 2001/06/04 23:14:02 mickey Exp $        */
 
@@ -40,7 +40,7 @@
 #endif
 
 /*
- * void 
+ * void
  * bzero(dst, count)
  *     void *dst;
  *     size_t count;
@@ -55,7 +55,7 @@
        comib,>>,n 4,%arg1,$bzero_bytes
 
        /*
-        * Since we are only clearing memory the alignment restrictions 
+        * Since we are only clearing memory the alignment restrictions
         * are simplified. Figure out how many "extra" bytes we need to
         * store with stbys.
         */
@@ -64,7 +64,7 @@
         add     %arg1,%t1,%arg1
 
        /*
-        * We will zero the destination in blocks of 16 bytes as long as we 
+        * We will zero the destination in blocks of 16 bytes as long as we
         * can and then we'll go to the 4 byte moves.
         */
 
@@ -80,8 +80,8 @@
        addi            -16, %arg1, %arg1
 
        /*
-        * see if there is anything left that needs to be zeroed in a word 
-        * move. Since the count was decremented by 16, add 12 to test if 
+        * see if there is anything left that needs to be zeroed in a word
+        * move. Since the count was decremented by 16, add 12 to test if
         * there are any full word moves left to do.
         */
 
@@ -110,7 +110,7 @@
 
 $bzero_bytes:
         addib,> -1,%arg1,$bzero_bytes
-        stbs,ma %r0,1(%arg0) 
+        stbs,ma %r0,1(%arg0)
 
 $bzero_exit:
        bv,n    %r0(%rp)
diff -r 4d87e977cdad -r 3589db3fa5ad lib/libc/arch/hppa/string/ffs.S
--- a/lib/libc/arch/hppa/string/ffs.S   Sun May 03 15:27:06 2020 +0000
+++ b/lib/libc/arch/hppa/string/ffs.S   Sun May 03 15:29:22 2020 +0000
@@ -1,8 +1,8 @@
-/*     $NetBSD: ffs.S,v 1.3 2004/07/18 20:30:04 chs Exp $      */
+/*     $NetBSD: ffs.S,v 1.4 2020/05/03 15:29:22 skrll Exp $    */
 
 /*     $OpenBSD: ffs.S,v 1.3 2001/06/04 23:14:02 mickey Exp $  */
 
-/* 
+/*
  * Copyright (c) 1990, 1991, 1992, 1994, The University of Utah and
  * the Computer Systems Laboratory at the University of Utah (CSL).
  * All rights reserved.
diff -r 4d87e977cdad -r 3589db3fa5ad lib/libc/arch/hppa/string/strlcpy.S
--- a/lib/libc/arch/hppa/string/strlcpy.S       Sun May 03 15:27:06 2020 +0000
+++ b/lib/libc/arch/hppa/string/strlcpy.S       Sun May 03 15:29:22 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: strlcpy.S,v 1.3 2008/04/28 20:22:56 martin Exp $       */
+/*     $NetBSD: strlcpy.S,v 1.4 2020/05/03 15:29:22 skrll Exp $        */
 
 /*
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -30,9 +30,9 @@
  */
 
 #include <machine/asm.h>
- 
-#if defined(LIBC_SCCS) && !defined(lint) 
-        RCSID("$NetBSD: strlcpy.S,v 1.3 2008/04/28 20:22:56 martin Exp $")
+
+#if defined(LIBC_SCCS) && !defined(lint)
+        RCSID("$NetBSD: strlcpy.S,v 1.4 2020/05/03 15:29:22 skrll Exp $")
 #endif /* LIBC_SCCS and not lint */
 
 /*
@@ -54,7 +54,7 @@
        copy            %arg1, %ret0
 
        /*
-        * If our dst buffer is one byte, branch immediately 
+        * If our dst buffer is one byte, branch immediately
         * to the code that NUL-terminates the dst buffer and
         * counts the (remaining) length of the src string.
         */
@@ -62,7 +62,7 @@
 
        /*
         * Loop copying bytes.  At the top of this loop,
-        * %arg2 is always the number of bytes we can still 
+        * %arg2 is always the number of bytes we can still
         * store, and %r1 holds the next byte to store.
         */
 $strlcpy_loop:
@@ -77,7 +77,7 @@
 $strlcpy_dst_done:
        comb,<>,n       %r0, %r1, $strlcpy_dst_done
        ldbs,ma         1(%arg1), %r1
-       
+
 $strlcpy_exit:
        bv              %r0(%rp)
        sub             %arg1, %ret0, %ret0
diff -r 4d87e977cdad -r 3589db3fa5ad lib/libc/arch/hppa/sys/brk.S
--- a/lib/libc/arch/hppa/sys/brk.S      Sun May 03 15:27:06 2020 +0000
+++ b/lib/libc/arch/hppa/sys/brk.S      Sun May 03 15:29:22 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: brk.S,v 1.6 2013/09/12 15:36:15 joerg Exp $    */
+/*     $NetBSD: brk.S,v 1.7 2020/05/03 15:29:22 skrll Exp $    */
 
 /*     $OpenBSD: brk.S,v 1.7 2001/06/04 23:14:04 mickey Exp $  */
 
@@ -31,14 +31,14 @@
 #include "SYS.h"
 
 #if defined(LIBC_SCCS) && !defined(lint)
-       RCSID("$NetBSD: brk.S,v 1.6 2013/09/12 15:36:15 joerg Exp $")
+       RCSID("$NetBSD: brk.S,v 1.7 2020/05/03 15:29:22 skrll Exp $")
 #endif /* LIBC_SCCS and not lint */
 
        .import curbrk, data
        .global _end
 
 #ifdef WEAK_ALIAS
-       WEAK_ALIAS(brk, _brk) 
+       WEAK_ALIAS(brk, _brk)
 #endif
 
        .data



Home | Main Index | Thread Index | Old Index