diff options
author | Doug Evans <dje@google.com> | 1997-11-19 02:37:58 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1997-11-19 02:37:58 +0000 |
commit | 13c9499d4e3b8ba790145ff7039c99c353a46fd4 (patch) | |
tree | a9f04070d0241b220949663072200772a7bdf90c | |
parent | 340d8e209ea20d05d3d26afd8060425baf72b03a (diff) | |
download | gdb-13c9499d4e3b8ba790145ff7039c99c353a46fd4.zip gdb-13c9499d4e3b8ba790145ff7039c99c353a46fd4.tar.gz gdb-13c9499d4e3b8ba790145ff7039c99c353a46fd4.tar.bz2 |
* sim-core.c (sim_core_signal): Use CIA_ADDR to fetch value.
* sim-break.c (sim_handle_breakpoint): Likewise.
-rw-r--r-- | sim/common/ChangeLog | 1 | ||||
-rw-r--r-- | sim/common/sim-break.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 4d47224..1073dfd 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -4,6 +4,7 @@ Tue Nov 18 15:53:45 1997 Doug Evans <devans@canuck.cygnus.com> * sim-base.h (CIA_ADDR): Provide default definition. * sim-core.c (sim_core_signal): Use CIA_ADDR to fetch value. + * sim-break.c (sim_handle_breakpoint): Likewise. Mon Nov 17 14:15:31 1997 Doug Evans <devans@seba.cygnus.com> diff --git a/sim/common/sim-break.c b/sim/common/sim-break.c index d735c85..1478278 100644 --- a/sim/common/sim-break.c +++ b/sim/common/sim-break.c @@ -98,7 +98,7 @@ sim_handle_breakpoint (sd, cpu, cia) struct sim_breakpoint *bp; for (bp = STATE_BREAKPOINTS (sd); bp; bp = bp->next) - if (bp->addr == cia) + if (bp->addr == CIA_ADDR (cia)) break; if (!bp || !(bp->flags & SIM_BREAK_INSERTED)) |