Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [preliminary patch] sim/h8300/compile.c: abort when abort is called.
@ 2003-06-24  8:14 Kazu Hirata
  2003-06-24 16:18 ` Andrew Cagney
  0 siblings, 1 reply; 6+ messages in thread
From: Kazu Hirata @ 2003-06-24  8:14 UTC (permalink / raw)
  To: gdb-patches; +Cc: msnyder, rsandifo, aoliva, vinschen, dvenkat

Hi,

Attached is a patch to teach the h8300 simulator to abort when abort
is called.  Without this, I get spurious XPASS when testing gcc.
Although the patched simulator works, my gut feeling is telling me
that there should be a better way to do this.  Any thought?

By the way, the last h8300-side function that causes the simulator to
abort is _kill() in newlib/libc/sys/h8300hms/misc.c, which in turn
issues sleep instruction.

Kazu Hirata

2003-06-24  Kazu Hirata  <kazu@cs.umass.edu>

	* compile.c (sim_resume): Abort when sleep instruction is used
	without the magic number.

Index: compile.c
===================================================================
RCS file: /cvs/src/src/sim/h8300/compile.c,v
retrieving revision 1.31
diff -u -r1.31 compile.c
--- compile.c	19 Jun 2003 02:14:14 -0000	1.31
+++ compile.c	24 Jun 2003 07:40:12 -0000
@@ -3577,8 +3577,7 @@
 	    }
 	  else
 	    {
-	      /* Treat it as a sigtrap.  */
-	      sim_engine_set_run_state (sd, sim_stopped, SIGTRAP);
+	      abort ();
 	    }
 	  goto end;
 


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2003-07-02 19:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-06-24  8:14 [preliminary patch] sim/h8300/compile.c: abort when abort is called Kazu Hirata
2003-06-24 16:18 ` Andrew Cagney
2003-06-24 23:03   ` Michael Snyder
2003-06-25 21:39     ` Kazu Hirata
2003-07-02 19:06       ` Michael Snyder
2003-06-24 23:04   ` Michael Snyder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox