Module Name:    src
Committed By:   skrll
Date:           Sun May  3 15:29:22 UTC 2020

Modified Files:
        src/lib/libc/arch/hppa/gen: __setjmp14.S
        src/lib/libc/arch/hppa/string: bzero.S ffs.S strlcpy.S
        src/lib/libc/arch/hppa/sys: brk.S

Log Message:
Even more trailing whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/lib/libc/arch/hppa/gen/__setjmp14.S
cvs rdiff -u -r1.2 -r1.3 src/lib/libc/arch/hppa/string/bzero.S
cvs rdiff -u -r1.3 -r1.4 src/lib/libc/arch/hppa/string/ffs.S \
    src/lib/libc/arch/hppa/string/strlcpy.S
cvs rdiff -u -r1.6 -r1.7 src/lib/libc/arch/hppa/sys/brk.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/hppa/gen/__setjmp14.S
diff -u src/lib/libc/arch/hppa/gen/__setjmp14.S:1.6 src/lib/libc/arch/hppa/gen/__setjmp14.S:1.7
--- src/lib/libc/arch/hppa/gen/__setjmp14.S:1.6	Sat Jul 16 09:51:13 2016
+++ src/lib/libc/arch/hppa/gen/__setjmp14.S	Sun May  3 15:29:22 2020
@@ -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 @@ ENTRY(__setjmp14,0)
 	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>

Index: src/lib/libc/arch/hppa/string/bzero.S
diff -u src/lib/libc/arch/hppa/string/bzero.S:1.2 src/lib/libc/arch/hppa/string/bzero.S:1.3
--- src/lib/libc/arch/hppa/string/bzero.S:1.2	Mon Oct  6 05:30:21 2003
+++ src/lib/libc/arch/hppa/string/bzero.S	Sun May  3 15:29:22 2020
@@ -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 @@ LEAF_ENTRY(bzero)
 	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 @@ LEAF_ENTRY(bzero)
         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 @@ $bzero_loop_16:
 	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_cleanup:
 
 $bzero_bytes:
         addib,> -1,%arg1,$bzero_bytes
-        stbs,ma %r0,1(%arg0) 
+        stbs,ma %r0,1(%arg0)
 
 $bzero_exit:
 	bv,n	%r0(%rp)

Index: src/lib/libc/arch/hppa/string/ffs.S
diff -u src/lib/libc/arch/hppa/string/ffs.S:1.3 src/lib/libc/arch/hppa/string/ffs.S:1.4
--- src/lib/libc/arch/hppa/string/ffs.S:1.3	Sun Jul 18 20:30:04 2004
+++ src/lib/libc/arch/hppa/string/ffs.S	Sun May  3 15:29:22 2020
@@ -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.
Index: src/lib/libc/arch/hppa/string/strlcpy.S
diff -u src/lib/libc/arch/hppa/string/strlcpy.S:1.3 src/lib/libc/arch/hppa/string/strlcpy.S:1.4
--- src/lib/libc/arch/hppa/string/strlcpy.S:1.3	Mon Apr 28 20:22:56 2008
+++ src/lib/libc/arch/hppa/string/strlcpy.S	Sun May  3 15:29:22 2020
@@ -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 @@ LEAF_ENTRY(_strlcpy)
 	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 @@ LEAF_ENTRY(_strlcpy)
 
 	/*
 	 * 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_full:
 $strlcpy_dst_done:
 	comb,<>,n	%r0, %r1, $strlcpy_dst_done
 	ldbs,ma		1(%arg1), %r1
-	
+
 $strlcpy_exit:
 	bv		%r0(%rp)
 	sub		%arg1, %ret0, %ret0

Index: src/lib/libc/arch/hppa/sys/brk.S
diff -u src/lib/libc/arch/hppa/sys/brk.S:1.6 src/lib/libc/arch/hppa/sys/brk.S:1.7
--- src/lib/libc/arch/hppa/sys/brk.S:1.6	Thu Sep 12 15:36:15 2013
+++ src/lib/libc/arch/hppa/sys/brk.S	Sun May  3 15:29:22 2020
@@ -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

Reply via email to