From: Jan Hubicka Date: Fri, 27 Mar 2009 22:47:27 +0000 (+0100) Subject: except.c (choose_personality_routine): Set terminate_node to abort for java exceptions. X-Git-Tag: releases/gcc-4.5.0~7113 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0387122d055068bd3f76eb14f3b5f2ee77f21aee;p=thirdparty%2Fgcc.git except.c (choose_personality_routine): Set terminate_node to abort for java exceptions. * except.c (choose_personality_routine): Set terminate_node to abort for java exceptions. From-SVN: r145140 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 477e84b7fcca..124a3e956517 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2009-03-27 Jan Hubicka + + * except.c (choose_personality_routine): Set terminate_node to abort + for java exceptions. + 2009-03-27 Dodji Seketeli Jakub Jelinek diff --git a/gcc/cp/except.c b/gcc/cp/except.c index 7813d087405a..2638ccc90d91 100644 --- a/gcc/cp/except.c +++ b/gcc/cp/except.c @@ -353,6 +353,7 @@ choose_personality_routine (enum languages lang) case lang_java: state = chose_java; + terminate_node = built_in_decls [BUILT_IN_ABORT]; eh_personality_libfunc = init_one_libfunc (USING_SJLJ_EXCEPTIONS ? "__gcj_personality_sj0" : "__gcj_personality_v0");