diff options
author | Mike Stump <mrs@apple.com> | 2004-05-19 02:11:42 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2004-05-19 02:11:42 +0000 |
commit | eeab4d81a61970e9079dbd9a8033d13e0cc27980 (patch) | |
tree | 4adbc5fe821c2a82672b65131f45055c866c807e /gcc/target.h | |
parent | bb9a388dad84486a075d822e4bed05a74faab780 (diff) | |
download | gcc-eeab4d81a61970e9079dbd9a8033d13e0cc27980.zip gcc-eeab4d81a61970e9079dbd9a8033d13e0cc27980.tar.gz gcc-eeab4d81a61970e9079dbd9a8033d13e0cc27980.tar.bz2 |
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 <dpatel@apple.com>
From-SVN: r82016
Diffstat (limited to 'gcc/target.h')
-rw-r--r-- | gcc/target.h | 5 |
1 files changed, 3 insertions, 2 deletions
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); |