diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-13 04:45:57 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-13 04:45:57 +0000 |
commit | a2d421410ebac81ab3d874b79c72fc1d6dc2d60c (patch) | |
tree | deb190d95c498ebdc2550008c35c1c3209928a07 /libjava/exception.cc | |
parent | 14ff6cc5349e8e523701062d94b5f7063a6e171c (diff) | |
download | gcc-a2d421410ebac81ab3d874b79c72fc1d6dc2d60c.tar.gz |
2000-10-13 Bryce McKinlay <bryce@albatross.co.nz>
* exception.cc: Don't #include "exception".
(_Jv_eh_alloc): Call abort (), not terminate (), if malloc fails.
* Makefile.am (libgcj_la_LDFLAGS): Link in libsupc++.
* Makefile.in: Updated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36855 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/exception.cc')
-rw-r--r-- | libjava/exception.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libjava/exception.cc b/libjava/exception.cc index 30ef55c078c..b8b9634e94d 100644 --- a/libjava/exception.cc +++ b/libjava/exception.cc @@ -10,7 +10,6 @@ details. */ #include <config.h> -#include "exception" #include <stddef.h> #include <stdlib.h> @@ -101,7 +100,7 @@ _Jv_eh_alloc () apparently can sometimes free() this value itself. */ java_eh_info *p = (java_eh_info *) malloc (sizeof (java_eh_info)); if (p == 0) - terminate (); + abort (); p->value = 0; java_eh_info ** info_ptr = __get_eh_info (); |