Module Name:    src
Committed By:   isaki
Date:           Sat Aug 22 05:09:02 UTC 2020

Modified Files:
        src/sys/arch/amiga/stand/bootblock/boot: ashldi3.s

Log Message:
Fix register order.  %d0 is higher and %d1 is lower.
This would have rarely affected.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/amiga/stand/bootblock/boot/ashldi3.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/amiga/stand/bootblock/boot/ashldi3.s
diff -u src/sys/arch/amiga/stand/bootblock/boot/ashldi3.s:1.2 src/sys/arch/amiga/stand/bootblock/boot/ashldi3.s:1.3
--- src/sys/arch/amiga/stand/bootblock/boot/ashldi3.s:1.2	Mon Apr 28 20:23:13 2008
+++ src/sys/arch/amiga/stand/bootblock/boot/ashldi3.s	Sat Aug 22 05:09:02 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: ashldi3.s,v 1.2 2008/04/28 20:23:13 martin Exp $ */
+/*	$NetBSD: ashldi3.s,v 1.3 2020/08/22 05:09:02 isaki Exp $ */
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -36,8 +36,8 @@ ENTRY_NOPROFILE(__ashldi3)
 	movml %sp@(8),%d0-%d2
 	jra L2
 L1:
-	asll #1,%d0
-	roxll #1,%d1
+	asll #1,%d1
+	roxll #1,%d0
 L2:
 	dbra %d2,L1
 

Reply via email to