Module Name:    src
Committed By:   dholland
Date:           Fri Dec 11 09:14:19 UTC 2020

Modified Files:
        src/sys/arch/arm/arm: bcopyinout.S

Log Message:
arm copyin/out: make copyin not use copyout's epilogue (typo in labels)

The epilogues are the same, so this is harmless, but if they ever
changed (e.g. after rearranging the register usage) it would be broken
in a very confusing way.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/arm/arm/bcopyinout.S

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

Modified files:

Index: src/sys/arch/arm/arm/bcopyinout.S
diff -u src/sys/arch/arm/arm/bcopyinout.S:1.21 src/sys/arch/arm/arm/bcopyinout.S:1.22
--- src/sys/arch/arm/arm/bcopyinout.S:1.21	Wed Jan 24 09:04:44 2018
+++ src/sys/arch/arm/arm/bcopyinout.S	Fri Dec 11 09:14:19 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: bcopyinout.S,v 1.21 2018/01/24 09:04:44 skrll Exp $	*/
+/*	$NetBSD: bcopyinout.S,v 1.22 2020/12/11 09:14:19 dholland Exp $	*/
 
 /*
  * Copyright (c) 2002 Wasabi Systems, Inc.
@@ -52,7 +52,7 @@
 #include "bcopyinout_xscale.S"
 #else
 
-RCSID("$NetBSD: bcopyinout.S,v 1.21 2018/01/24 09:04:44 skrll Exp $")	
+RCSID("$NetBSD: bcopyinout.S,v 1.22 2020/12/11 09:14:19 dholland Exp $")	
 
 	.text
 	.align	0
@@ -239,7 +239,7 @@ ENTRY(copyin)
 	 * If we're done, bail.
 	 */
 	cmp	r2, #0
-	beq	.Lout
+	beq	.Liout
 
 .Licleanup:
 	and	r6, r2, #0x3

Reply via email to