Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips/mips Fix incorrect register usage in #if (PGSH...



details:   https://anonhg.NetBSD.org/src/rev/268b29a354a2
branches:  trunk
changeset: 346931:268b29a354a2
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sun Aug 07 06:12:24 2016 +0000

description:
Fix incorrect register usage in #if (PGSHIFT & 1) == 0 code

diffstat:

 sys/arch/mips/mips/mipsX_subr.S |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (25 lines):

diff -r 62b7fa37c6f1 -r 268b29a354a2 sys/arch/mips/mips/mipsX_subr.S
--- a/sys/arch/mips/mips/mipsX_subr.S   Sun Aug 07 05:09:12 2016 +0000
+++ b/sys/arch/mips/mips/mipsX_subr.S   Sun Aug 07 06:12:24 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mipsX_subr.S,v 1.80 2016/08/05 15:39:09 skrll Exp $    */
+/*     $NetBSD: mipsX_subr.S,v 1.81 2016/08/07 06:12:24 skrll Exp $    */
 
 /*
  * Copyright 2002 Wasabi Systems, Inc.
@@ -2162,12 +2162,12 @@
         li     v0, 0                           # assume failure
        bnez    t1, 4f                          # Decide even odd
         nop
-       move    t3, a2                          # swap a2 and t0
-       move    a2, t0                          #
+       move    t3, a1                          # swap a1 and t0
+       move    a1, t0                          #
        move    t0, t3                          #
 4:
        _MTC0   t0, MIPS_COP_0_TLB_LO0          # init low reg0.
-       _MTC0   a2, MIPS_COP_0_TLB_LO1          # init low reg1.
+       _MTC0   a1, MIPS_COP_0_TLB_LO1          # init low reg1.
 #endif /* PGSHIFT & 1 */
 5:
        COP0_SYNC



Home | Main Index | Thread Index | Old Index