diff options
author | Michael Snyder <msnyder@vmware.com> | 2003-06-23 18:03:17 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2003-06-23 18:03:17 +0000 |
commit | ac59bf8dbf1694f0a90954d969fc230fff24e5fc (patch) | |
tree | 03b5200fd5f0d50e62d34e7d272f5cab43ff436d /sim/common | |
parent | 72f536bd7809ddf3df66477fc3607204831f9f58 (diff) | |
download | gdb-ac59bf8dbf1694f0a90954d969fc230fff24e5fc.zip gdb-ac59bf8dbf1694f0a90954d969fc230fff24e5fc.tar.gz gdb-ac59bf8dbf1694f0a90954d969fc230fff24e5fc.tar.bz2 |
2003-06-23 Michael Snyder <msnyder@redhat.com>
* nrun.c (main): Delete h8/300 ifdef (sim now handles signals).
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 1 | ||||
-rw-r--r-- | sim/common/nrun.c | 6 |
2 files changed, 1 insertions, 6 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 537ebe3..c7172f9 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -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> diff --git a/sim/common/nrun.c b/sim/common/nrun.c index 7c77f5c..8dfa946 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; } |