Commit 4f2905fb by Mike Stump Committed by Jason Merrill

* libgcc2.c (__pure_virtual): Call __terminate instead of _exit.

From-SVN: r23185
parent 8b27f225
Mon Oct 19 19:34:03 1998 Mike Stump <mrs@wrs.com>
* libgcc2.c (__pure_virtual): Call __terminate instead of _exit.
Mon Oct 19 13:26:24 1998 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> Mon Oct 19 13:26:24 1998 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* jump.c (sets_cc0_p): Compile only if HAVE_cc0. * jump.c (sets_cc0_p): Compile only if HAVE_cc0.
...@@ -91,6 +95,7 @@ Sat Oct 17 23:18:08 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> ...@@ -91,6 +95,7 @@ Sat Oct 17 23:18:08 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* toplev.c (check_lang_option): Cast the result of `strlen' to * toplev.c (check_lang_option): Cast the result of `strlen' to
`int' when comparing against one. `int' when comparing against one.
>>>>>>> 1.2327
Sat Oct 17 13:09:09 1998 Graham <grahams@rcp.co.uk> Sat Oct 17 13:09:09 1998 Graham <grahams@rcp.co.uk>
* gcse.c (dump_cuid_table): Correct typo. * gcse.c (dump_cuid_table): Correct typo.
...@@ -279,6 +284,7 @@ Fri Oct 16 15:26:24 1998 Dave Brolley <brolley@cygnus.com> ...@@ -279,6 +284,7 @@ Fri Oct 16 15:26:24 1998 Dave Brolley <brolley@cygnus.com>
* c-lex.c (yylex): Fix unaligned access of wchar_t. * c-lex.c (yylex): Fix unaligned access of wchar_t.
>>>>>>> 1.2326
Fri Oct 16 10:47:53 1998 Nick Clifton <nickc@cygnus.com> Fri Oct 16 10:47:53 1998 Nick Clifton <nickc@cygnus.com>
* config/arm/arm.h (TARGET_SWITCHES): Add --help documentation. * config/arm/arm.h (TARGET_SWITCHES): Add --help documentation.
......
...@@ -3811,6 +3811,6 @@ __pure_virtual () ...@@ -3811,6 +3811,6 @@ __pure_virtual ()
#ifndef inhibit_libc #ifndef inhibit_libc
write (2, MESSAGE, sizeof (MESSAGE) - 1); write (2, MESSAGE, sizeof (MESSAGE) - 1);
#endif #endif
_exit (-1); __terminate ();
} }
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment