Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/powerpc/powerpc Fix a swapped register pasto(?) int...



details:   https://anonhg.NetBSD.org/src/rev/10d23ad5da86
branches:  trunk
changeset: 525968:10d23ad5da86
user:      kleink <kleink%NetBSD.org@localhost>
date:      Mon Apr 22 18:31:11 2002 +0000

description:
Fix a swapped register pasto(?) introduced in rev. 1.17.

diffstat:

 sys/arch/powerpc/powerpc/trap_subr.S |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r e9824b48748f -r 10d23ad5da86 sys/arch/powerpc/powerpc/trap_subr.S
--- a/sys/arch/powerpc/powerpc/trap_subr.S      Mon Apr 22 17:17:35 2002 +0000
+++ b/sys/arch/powerpc/powerpc/trap_subr.S      Mon Apr 22 18:31:11 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap_subr.S,v 1.18 2002/04/21 22:05:45 kleink Exp $    */
+/*     $NetBSD: trap_subr.S,v 1.19 2002/04/22 18:31:11 kleink Exp $    */
 
 /*
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -920,8 +920,8 @@
        mtlr    6
        lwz     28,IFRAME_LR(1)         /* saved LR */
        lwz     29,IFRAME_CR(1)         /* saved CR */
-       lwz     6,IFRAME_R5(1)
-       lwz     5,IFRAME_R6(1)
+       lwz     6,IFRAME_R6(1)
+       lwz     5,IFRAME_R5(1)
        lwz     4,IFRAME_R4(1)
        lwz     3,IFRAME_R3(1)
        lwz     0,IFRAME_R0(1)



Home | Main Index | Thread Index | Old Index