2003-06-23 Michael Snyder <msnyder@redhat.com>
authorMichael Snyder <msnyder@vmware.com>
Mon, 23 Jun 2003 18:03:17 +0000 (18:03 +0000)
committerMichael Snyder <msnyder@vmware.com>
Mon, 23 Jun 2003 18:03:17 +0000 (18:03 +0000)
        * nrun.c (main): Delete h8/300 ifdef (sim now handles signals).

sim/common/ChangeLog
sim/common/nrun.c

index 537ebe3a1c1b8e6b71e840766f3b019834a132af..c7172f9d152536febcd93610c534f7aad9ddacda 100644 (file)
@@ -1,5 +1,6 @@
 2003-06-23  Michael Snyder  <msnyder@redhat.com>
 
+       * nrun.c (main): Delete h8/300 ifdef (sim now handles signals).
        * sim-reg.c: Fix cut-and-paste bug in comment.
 
 2003-06-22  Andrew Cagney  <cagney@redhat.com>
index 7c77f5c3b44d1c8be074c16e52eb406a17cd7682..8dfa94658b0a9ca5ee541d9fc052e0a3fc47eb6d 100644 (file)
@@ -176,11 +176,6 @@ main (int argc, char **argv)
      the signal that the simulator received; we want to return that to
      indicate failure.  */
   
-#ifdef SIM_H8300 /* FIXME: Ugh.  grep for SLEEP in compile.c  */
-  if (sigrc == SIGILL)
-    abort ();
-  sigrc = 0;
-#else
   /* Why did we stop? */
   switch (reason)
     {
@@ -198,7 +193,6 @@ main (int argc, char **argv)
       break;
 
     }
-#endif
 
   return sigrc;
 }