Source-Changes-HG archive

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

[src/netbsd-1-4]: src/sys/arch/alpha/alpha pullup 1.6->1.7 (cgd): BWX instruc...



details:   https://anonhg.NetBSD.org/src/rev/120ce2a770d3
branches:  netbsd-1-4
changeset: 468733:120ce2a770d3
user:      perry <perry%NetBSD.org@localhost>
date:      Fri Jun 18 17:59:43 1999 +0000

description:
pullup 1.6->1.7 (cgd): BWX instruction emulation and unaligned access

diffstat:

 sys/arch/alpha/alpha/db_interface.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 1fadcb3e0075 -r 120ce2a770d3 sys/arch/alpha/alpha/db_interface.c
--- a/sys/arch/alpha/alpha/db_interface.c       Fri Jun 18 17:58:50 1999 +0000
+++ b/sys/arch/alpha/alpha/db_interface.c       Fri Jun 18 17:59:43 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: db_interface.c,v 1.4.6.1 1999/04/07 08:12:41 pk Exp $ */
+/* $NetBSD: db_interface.c,v 1.4.6.2 1999/06/18 17:59:43 perry Exp $ */
 
 /* 
  * Mach Operating System
@@ -51,7 +51,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.4.6.1 1999/04/07 08:12:41 pk Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.4.6.2 1999/06/18 17:59:43 perry Exp $");
 
 #include <sys/param.h>
 #include <sys/proc.h>
@@ -533,7 +533,7 @@
         * Jump format: target PC is (contents of instruction's "RB") & ~3.
         */
        case op_j:
-               newpc = db_register_value(regs, insn.jump_format.rs) & ~3;
+               newpc = db_register_value(regs, insn.jump_format.rb) & ~3;
                break;
 
        /*



Home | Main Index | Thread Index | Old Index