diff options
author | Paul Brook <paul@codesourcery.com> | 2004-07-15 01:07:53 +0000 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2004-07-15 01:07:53 +0000 |
commit | 951120eabf4013632a677fdab9f145806c37ddcc (patch) | |
tree | e24df3cf9d27a024b85f7ea213204bbe313c63a0 /gcc/dwarf2out.c | |
parent | b845ed9ff8113d47c2a38dda58f234e35c89508e (diff) | |
download | gcc-951120eabf4013632a677fdab9f145806c37ddcc.zip gcc-951120eabf4013632a677fdab9f145806c37ddcc.tar.gz gcc-951120eabf4013632a677fdab9f145806c37ddcc.tar.bz2 |
dwarf2out.c (dwarf2out_begin_prologue): Rename IA64_UNWIND_INFO to TARGET_UNWIND_INFO.
* dwarf2out.c (dwarf2out_begin_prologue): Rename IA64_UNWIND_INFO
to TARGET_UNWIND_INFO.
* except.c (output_function_exception_table): Ditto.
* except.h: Ditto.
* opts.c (decode_options): Ditto.
* passes.c (rest_of_handle_final): Ditto.
* final.c (final_start_function): Ditto.
(final_scan_insn, final_scan_insn): Replace IA64_UNWIND_EMIT with
target hook.
* targhooks.h (default_unwind_emit): Declare.
* targhooks.c (default_unwind_emit): New function.
* target-def.h: Define and use TARGET_UNWIND_EMIT.
* target.h (struct gcc_target): Add unwind_emit.
* config/ia64/ia64.c (TARGET_UNWIND_EMIT): Define.
* config/ia64/ia64.h: Rename IA64_UNWIND_INFO to TARGET_UNWIND_INFO.
Remove IA64_UNWIND_EMIT.
* doc/tm.texi: Document TARGET_UNWIND_EMIT and TARGET_UNWIND_INFO.
From-SVN: r84734
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 109c8d0..a3014cc 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -2360,7 +2360,7 @@ dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED, current_function_func_begin_label = 0; -#ifdef IA64_UNWIND_INFO +#ifdef TARGET_UNWIND_INFO /* ??? current_function_func_begin_label is also used by except.c for call-site information. We must emit this label if it might be used. */ @@ -2379,7 +2379,7 @@ dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED, current_function_funcdef_no); current_function_func_begin_label = get_identifier (label); -#ifdef IA64_UNWIND_INFO +#ifdef TARGET_UNWIND_INFO /* We can elide the fde allocation if we're not emitting debug info. */ if (! dwarf2out_do_frame ()) return; |