diff options
-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)) |