From: Michael Snyder Date: Mon, 23 Jun 2003 18:03:17 +0000 (+0000) Subject: 2003-06-23 Michael Snyder X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=57bea93ed25a3da3234b5023c93185b0ca268528;p=pf3gnuchains%2Fpf3gnuchains3x.git 2003-06-23 Michael Snyder * nrun.c (main): Delete h8/300 ifdef (sim now handles signals). --- diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 537ebe3a1c..c7172f9d15 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,6 @@ 2003-06-23 Michael Snyder + * 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 diff --git a/sim/common/nrun.c b/sim/common/nrun.c index 7c77f5c3b4..8dfa94658b 100644 --- a/sim/common/nrun.c +++ b/sim/common/nrun.c @@ -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; }