Index: sim/erc32/interf.c |
diff --git a/sim/erc32/interf.c b/sim/erc32/interf.c |
index d94201a3ffd97d8994b3ece5ac62a223ddec0b5b..d869cd587cd56960319c3c577e700e315ce393a7 100644 |
--- a/sim/erc32/interf.c |
+++ b/sim/erc32/interf.c |
@@ -388,13 +388,13 @@ sim_stop_reason(sd, reason, sigrc) |
switch (simstat) { |
case CTRL_C: |
*reason = sim_stopped; |
- *sigrc = TARGET_SIGNAL_INT; |
+ *sigrc = GDB_SIGNAL_INT; |
break; |
case OK: |
case TIME_OUT: |
case BPT_HIT: |
*reason = sim_stopped; |
- *sigrc = TARGET_SIGNAL_TRAP; |
+ *sigrc = GDB_SIGNAL_TRAP; |
break; |
case ERROR: |
*sigrc = 0; |