OSDN Git Service

* libgcc2.c (__pure_virtual): Call __terminate instead of _exit.
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Oct 1998 19:34:53 +0000 (19:34 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Oct 1998 19:34:53 +0000 (19:34 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23185 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/libgcc2.c

index 25a0385..36ce1ac 100644 (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.
index 21b72af..d2080b2 100644 (file)
@@ -3811,6 +3811,6 @@ __pure_virtual ()
 #ifndef inhibit_libc
   write (2, MESSAGE, sizeof (MESSAGE) - 1);
 #endif
-  _exit (-1);
+  __terminate ();
 }
 #endif