summaryrefslogtreecommitdiff
path: root/sim/avr
diff options
context:
space:
mode:
authorDenis Chertykov <chertykov@gmail.com>2016-07-19 09:47:23 +0300
committerDenis Chertykov <chertykov@gmail.com>2016-07-19 09:47:23 +0300
commit59f48f5a45d2300da401f1fccab31ba436217469 (patch)
treeea97cd072d3453b013e1baf3b724a5271dd22368 /sim/avr
parenta4717ffb7bbc1415275c6c51029729c8b5de9c12 (diff)
downloadbinutils-gdb-59f48f5a45d2300da401f1fccab31ba436217469.tar.gz
Update PC when simulate break instruction.
PR target/ 19401 * avr/interp.c (step_once): Pass break instruction address to sim_engine_halt function which writes that to PC. Remove code that follows that function call as it is unreachable.
Diffstat (limited to 'sim/avr')
-rw-r--r--sim/avr/interp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sim/avr/interp.c b/sim/avr/interp.c
index 31a99407bd2..fcce9b298d1 100644
--- a/sim/avr/interp.c
+++ b/sim/avr/interp.c
@@ -911,8 +911,7 @@ step_once (SIM_CPU *cpu)
case OP_break:
/* Stop on this address. */
- sim_engine_halt (CPU_STATE (cpu), cpu, NULL, cpu->pc, sim_stopped, SIM_SIGTRAP);
- cpu->pc = ipc;
+ sim_engine_halt (CPU_STATE (cpu), cpu, NULL, ipc, sim_stopped, SIM_SIGTRAP);
break;
case OP_bld: