Index: sim/avr/interp.c |
diff --git a/sim/avr/interp.c b/sim/avr/interp.c |
index 8b61af830ad9713db47fd932c2267ddc156ed5b0..941aea73a4668122f0b6dc237e223e432c311209 100644 |
--- a/sim/avr/interp.c |
+++ b/sim/avr/interp.c |
@@ -870,7 +870,7 @@ sim_resume (SIM_DESC sd, int step, int signal) |
if (step) |
{ |
cpu_exception = sim_stopped; |
- cpu_signal = TARGET_SIGNAL_TRAP; |
+ cpu_signal = GDB_SIGNAL_TRAP; |
} |
else |
cpu_exception = sim_running; |
@@ -1000,7 +1000,7 @@ sim_resume (SIM_DESC sd, int step, int signal) |
case OP_break: |
/* Stop on this address. */ |
cpu_exception = sim_stopped; |
- cpu_signal = TARGET_SIGNAL_TRAP; |
+ cpu_signal = GDB_SIGNAL_TRAP; |
pc = ipc; |
break; |
@@ -1763,7 +1763,7 @@ int |
sim_stop (SIM_DESC sd) |
{ |
cpu_exception = sim_stopped; |
- cpu_signal = TARGET_SIGNAL_INT; |
+ cpu_signal = GDB_SIGNAL_INT; |
return 1; |
} |