Index: common/ChangeLog
authorAndrew Cagney <cagney@redhat.com>
Wed, 26 Feb 2003 23:27:09 +0000 (23:27 +0000)
committerAndrew Cagney <cagney@redhat.com>
Wed, 26 Feb 2003 23:27:09 +0000 (23:27 +0000)
2003-02-26  Andrew Cagney  <cagney@redhat.com>

* sim-engine.h (sim_engine_abort): Add noreturn attribute.
(sim_engine_vabort): Ditto.
(sim_engine_halt, sim_engine_restart): Ditto.

Index: mn10300/ChangeLog
2003-02-26  Andrew Cagney  <cagney@redhat.com>

* am33.igen: Call sim_engine_abort instead of abort.

sim/common/ChangeLog
sim/common/sim-engine.h
sim/mn10300/ChangeLog
sim/mn10300/am33.igen

index 2d5f7b8..bd1b29b 100644 (file)
@@ -1,3 +1,9 @@
+2003-02-26  Andrew Cagney  <cagney@redhat.com>
+
+       * sim-engine.h (sim_engine_abort): Add noreturn attribute.
+       (sim_engine_vabort): Ditto.
+       (sim_engine_halt, sim_engine_restart): Ditto.
+
 2003-02-20  Andrew Cagney  <ac131313@redhat.com>
 
        * Make-common.in (SIM_NEW_COMMON_OBJS): Remove sim-break.o
index 41aa51f..18513a6 100644 (file)
@@ -63,7 +63,7 @@ extern void sim_engine_halt
  sim_cpu *next_cpu, /* NULL -> succ (last_cpu) or event-mgr */
  sim_cia cia,
  enum sim_stop reason,
- int sigrc);
+ int sigrc) __attribute__ ((noreturn));
 
 /* Halt hook - allow target specific operation when halting a
    simulator */
@@ -116,14 +116,14 @@ extern void sim_engine_abort
  sim_cpu *cpu,
  sim_cia cia,
  const char *fmt,
- ...) __attribute__ ((format (printf, 4, 5)));
+ ...) __attribute__ ((format (printf, 4, 5))) __attribute__ ((noreturn));
 
 extern void sim_engine_vabort
 (SIM_DESC sd,
  sim_cpu *cpu,
  sim_cia cia,
  const char *fmt,
- va_list ap);
+ va_list ap) __attribute__ ((noreturn));
 
 /* No abort hook - when possible this function exits using the
    engine_halt function (and SIM_ENGINE_HALT_HOOK). */
index b7ea00d..ce01a53 100644 (file)
@@ -1,3 +1,7 @@
+2003-02-26  Andrew Cagney  <cagney@redhat.com>
+
+       * am33.igen: Call sim_engine_abort instead of abort.
+
 2003-02-26  David Carlton  <carlton@math.stanford.edu>
 
        * dv-mn103tim.c (read_special_timer6_reg): Add break after
index a5745e2..db41889 100644 (file)
@@ -34,7 +34,7 @@
     case 4:
       return REG_MCVF;
     default:
-      abort ();
+      sim_engine_abort (SD, CPU, cia, "%s:%d: bad switch\n", __FILE__, __LINE__);
     }
 }