diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-10-26 01:51:01 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-10-26 01:51:01 +0000 |
commit | f3a8e4f58d1107f0e84b865d5dd0e92ea56d8e6e (patch) | |
tree | fd026017dea2851e8801dfd0950f0f11a8281890 /gcc/output.h | |
parent | ed4a14688d13dcabe426d88b81a63f9c12aa4ba2 (diff) | |
download | gcc-f3a8e4f58d1107f0e84b865d5dd0e92ea56d8e6e.zip gcc-f3a8e4f58d1107f0e84b865d5dd0e92ea56d8e6e.tar.gz gcc-f3a8e4f58d1107f0e84b865d5dd0e92ea56d8e6e.tar.bz2 |
dwarf2out.c (PTR_SIZE, [...]): Move outside of macro guards.
* dwarf2out.c (PTR_SIZE, default_eh_frame_section): Move outside
of macro guards. Fix #endif comment.
* output.h (default_exception_section, default_eh_frame_section):
Move prototypes outside of macro guard.
* crtstuff.c: Fix #endif comment.
From-SVN: r46520
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/output.h b/gcc/output.h index 585d355..e18ceea 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -208,12 +208,6 @@ extern void named_section PARAMS ((tree, const char *, int)); /* Tell assembler to switch to the section for function DECL. */ extern void function_section PARAMS ((tree)); -/* Tell assembler to switch to the section for the exception table. */ -extern void default_exception_section PARAMS ((void)); - -/* Tell assembler to switch to the section for the EH frames. */ -extern void default_eh_frame_section PARAMS ((void)); - /* Tell assembler to switch to the section for string merging. */ extern void mergeable_string_section PARAMS ((tree, unsigned HOST_WIDE_INT, unsigned int)); @@ -462,6 +456,12 @@ extern int profile_label_no; /* Default target function prologue and epilogue assembler output. */ extern void default_function_pro_epilogue PARAMS ((FILE *, HOST_WIDE_INT)); +/* Tell assembler to switch to the section for the exception table. */ +extern void default_exception_section PARAMS ((void)); + +/* Tell assembler to switch to the section for the EH frames. */ +extern void default_eh_frame_section PARAMS ((void)); + /* Default target hook that outputs nothing to a stream. */ extern void no_asm_to_stream PARAMS ((FILE *)); |