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 logic inversion in 1.107



details:   https://anonhg.NetBSD.org/src/rev/a2c29e03ef35
branches:  trunk
changeset: 339161:a2c29e03ef35
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Jun 30 13:30:50 2015 +0000

description:
Fix logic inversion in 1.107

diffstat:

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

diffs (18 lines):

diff -r ffbb37863fab -r a2c29e03ef35 sys/arch/mips/mips/locore_mips3.S
--- a/sys/arch/mips/mips/locore_mips3.S Tue Jun 30 11:56:27 2015 +0000
+++ b/sys/arch/mips/mips/locore_mips3.S Tue Jun 30 13:30:50 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: locore_mips3.S,v 1.110 2015/06/16 18:12:18 macallan Exp $      */
+/*     $NetBSD: locore_mips3.S,v 1.111 2015/06/30 13:30:50 skrll Exp $ */
 
 /*
  * Copyright (c) 1997 Jonathan Stone (hereinafter referred to as the author)
@@ -206,7 +206,7 @@
 #if __mips >= 32
        teqi    v1, 0
 #else
-       bnez    v1, 2b
+       beqz    v1, 1b
         nop
 #endif
        jr      ra



Home | Main Index | Thread Index | Old Index