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

From-SVN: r23185
This commit is contained in:
Mike Stump 1998-10-19 15:34:53 -04:00 committed by Jason Merrill
parent 8b27f22596
commit 4f2905fb4b
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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>
* 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>
* toplev.c (check_lang_option): Cast the result of `strlen' to
`int' when comparing against one.
>>>>>>> 1.2327
Sat Oct 17 13:09:09 1998 Graham <grahams@rcp.co.uk>
* gcse.c (dump_cuid_table): Correct typo.
@ -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.
>>>>>>> 1.2326
Fri Oct 16 10:47:53 1998 Nick Clifton <nickc@cygnus.com>
* config/arm/arm.h (TARGET_SWITCHES): Add --help documentation.

View File

@ -3811,6 +3811,6 @@ __pure_virtual ()
#ifndef inhibit_libc
write (2, MESSAGE, sizeof (MESSAGE) - 1);
#endif
_exit (-1);
__terminate ();
}
#endif