From: Joseph Myers Date: Fri, 18 Feb 2005 21:24:56 +0000 (+0000) Subject: except.c (output_function_exception_table): Call assemble_external_libcall (eh_person... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f6775e78a8f432b7ea5d6794ec6d6494d29450b6;p=gcc.git except.c (output_function_exception_table): Call assemble_external_libcall (eh_personality_libfunc). * except.c (output_function_exception_table): Call assemble_external_libcall (eh_personality_libfunc). From-SVN: r95235 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 317bcb07796..eddfd7b0fc0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-02-18 Joseph S. Myers + + * except.c (output_function_exception_table): Call + assemble_external_libcall (eh_personality_libfunc). + 2005-02-18 Joseph S. Myers PR target/19886 diff --git a/gcc/except.c b/gcc/except.c index 56bc2d79199..0efd12d8fde 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -3248,6 +3248,7 @@ output_function_exception_table (void) #ifdef TARGET_UNWIND_INFO /* TODO: Move this into target file. */ + assemble_external_libcall (eh_personality_libfunc); fputs ("\t.personality\t", asm_out_file); output_addr_const (asm_out_file, eh_personality_libfunc); fputs ("\n\t.handlerdata\n", asm_out_file);