diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-16 22:57:50 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-16 16:57:50 -0600 |
commit | 242c13b000c85528a7bc8db97ad9a1bc325ce022 (patch) | |
tree | 39818443f85a5e9bf37760f29433bdab6032e0e6 /gcc/dwarfout.c | |
parent | 1ad4f46be6e110470125bb53ad87661afe776fbe (diff) | |
download | gcc-242c13b000c85528a7bc8db97ad9a1bc325ce022.tar.gz |
except.c (push_eh_entry): Add prototype.
* except.c (push_eh_entry): Add prototype.
(pop_eh_entry, enqueue_eh_entry, dequeu_eh_entry): Likewise.
(call_get_eh_context, start_dynamic_cleanup): Likewise.
(start_dynamic_handler, can_throw): Likewise.
(output_exception_table_entry, scan_region): Likewise.
(eh_regs, set_insn_eh_region): Likewise.
Also fix typo in previous dwarfout change.
From-SVN: r19249
Diffstat (limited to 'gcc/dwarfout.c')
-rw-r--r-- | gcc/dwarfout.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index 0f1e62bd28f..8e1f2067f52 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -311,6 +311,7 @@ static char *dwarf_fmt_byte_name PROTO((unsigned)); static char *dwarf_fund_type_name PROTO((unsigned)); static tree decl_ultimate_origin PROTO((tree)); static tree block_ultimate_origin PROTO((tree)); +static tree decl_class_context PROTO((tree)); static void output_unsigned_leb128 PROTO((unsigned long)); static void output_signed_leb128 PROTO((long)); static inline int is_body_block PROTO((tree)); @@ -402,6 +403,7 @@ static void output_reference_type_die PROTO((void *)); static void output_ptr_to_mbr_type_die PROTO((void *)); static void output_compile_unit_die PROTO((void *)); static void output_string_type_die PROTO((void *)); +static void output_inheritance_die PROTO((void *)); static void output_structure_type_die PROTO((void *)); static void output_local_subroutine_die PROTO((void *)); static void output_subroutine_type_die PROTO((void *)); @@ -413,6 +415,7 @@ static void output_die PROTO((void (*) (), void *)); static void end_sibling_chain PROTO((void)); static void output_formal_types PROTO((tree)); static void pend_type PROTO((tree)); +static int type_ok_for_scope PROTO((tree, tree)); static void output_pending_types_for_scope PROTO((tree)); static void output_type PROTO((tree, tree)); static void output_tagged_type_instantiation PROTO((tree)); |