Commit 29741d6a by Andrew Haley Committed by Andrew Haley

decl.c (java_init_decl_processing): Call "__cxa_end_cleanup" when using the ARM EABI.

2007-09-04  Andrew Haley  <aph@redhat.com>

        * decl.c (java_init_decl_processing): Call "__cxa_end_cleanup"
        when using the ARM EABI.

From-SVN: r128086
parent 99a8d35b
2007-09-04 Andrew Haley <aph@redhat.com>
* decl.c (java_init_decl_processing): Call "__cxa_end_cleanup"
when using the ARM EABI.
2007-09-03 Daniel Jacobowitz <dan@codesourcery.com> 2007-09-03 Daniel Jacobowitz <dan@codesourcery.com>
* Make-lang.in (jvspec.o): Remove SHLIB_MULTILIB. * Make-lang.in (jvspec.o): Remove SHLIB_MULTILIB.
......
...@@ -1075,6 +1075,9 @@ java_init_decl_processing (void) ...@@ -1075,6 +1075,9 @@ java_init_decl_processing (void)
eh_personality_libfunc = init_one_libfunc (USING_SJLJ_EXCEPTIONS eh_personality_libfunc = init_one_libfunc (USING_SJLJ_EXCEPTIONS
? "__gcj_personality_sj0" ? "__gcj_personality_sj0"
: "__gcj_personality_v0"); : "__gcj_personality_v0");
if (targetm.arm_eabi_unwinder)
unwind_resume_libfunc = init_one_libfunc ("__cxa_end_cleanup");
else
default_init_unwind_resume_libfunc (); default_init_unwind_resume_libfunc ();
lang_eh_runtime_type = do_nothing; lang_eh_runtime_type = do_nothing;
......
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