From eeab4d81a61970e9079dbd9a8033d13e0cc27980 Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Wed, 19 May 2004 02:11:42 +0000 Subject: tm.texi (TARGET_ASM_EMIT_UNWIND_LABEL): Add argument to indicate if this label is for eh. * doc/tm.texi (TARGET_ASM_EMIT_UNWIND_LABEL): Add argument to indicate if this label is for eh. * config/darwin-protos.h (darwin_emit_unwind_label): Likewise. * config/darwin.c (darwin_emit_unwind_label): Likewise. * dwarf2out.c (output_call_frame_info): Likewise. * output.h (default_emit_unwind_label): Likewise. * target.h (unwind_label): Likewise. * varasm.c (default_emit_unwind_label): Likewise. * config/darwin.h (DWARF2_DEBUGGING_INFO, PREFERRED_DEBUGGING_TYPE, DEBUG_FRAME_SECTION, DEBUG_INFO_SECTION, DEBUG_ABBREV_SECTION, DEBUG_ARANGES_SECTION, DEBUG_MACINFO_SECTION, DEBUG_LINE_SECTION, DEBUG_LOC_SECTION, DEBUG_PUBNAMES_SECTION, DEBUG_STR_SECTION, DEBUG_RANGES_SECTION): Define. Radar 3657068. Co-Authored-By: Devang Patel From-SVN: r82016 --- gcc/target.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gcc/target.h') diff --git a/gcc/target.h b/gcc/target.h index 6e28810..8e0b592 100644 --- a/gcc/target.h +++ b/gcc/target.h @@ -76,9 +76,10 @@ struct gcc_target /* Output code that will emit a label for unwind info, if this target requires such labels. Second argument is the decl the - unwind info is associated with, third is is a boolean: true if + unwind info is associated with, third is a boolean: true if + this is for exception handling, fourth is a boolean: true if this is only a placeholder for an omitted FDE. */ - void (* unwind_label ) (FILE *, tree, int); + void (* unwind_label) (FILE *, tree, int, int); /* Output an internal label. */ void (* internal_label) (FILE *, const char *, unsigned long); -- cgit v1.1