Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/vax/vax Compare arguments must have correct order, ...



details:   https://anonhg.NetBSD.org/src/rev/793adbd6e539
branches:  trunk
changeset: 510366:793adbd6e539
user:      ragge <ragge%NetBSD.org@localhost>
date:      Sun May 27 19:33:20 2001 +0000

description:
Compare arguments must have correct order, won't work as expected otherwise.

diffstat:

 sys/arch/vax/vax/subr.s |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r a092e8b88d7f -r 793adbd6e539 sys/arch/vax/vax/subr.s
--- a/sys/arch/vax/vax/subr.s   Sun May 27 18:16:21 2001 +0000
+++ b/sys/arch/vax/vax/subr.s   Sun May 27 19:33:20 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: subr.s,v 1.57 2001/05/02 16:05:09 matt Exp $      */
+/*     $NetBSD: subr.s,v 1.58 2001/05/27 19:33:20 ragge Exp $     */
 
 /*
  * Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@@ -109,7 +109,7 @@
        pushl   $to                             # Address to jump to
        rei                                     # change to kernel stack
 to:    movw    $0xfff,_C_LABEL(panic)          # Save all regs in panic
-       cmpb    $3,(ap)                         # symbols info present?
+       cmpb    (ap),$3                         # symbols info present?
        blssu   3f                              # nope, skip
        bisl3   $0x80000000,8(ap),_C_LABEL(symtab_start)
                                                #   save start of symtab



Home | Main Index | Thread Index | Old Index