diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-10-20 00:24:14 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-10-20 00:24:14 +0000 |
commit | adf97f5809ecc5a286023e50fcf6302ad0f3f40a (patch) | |
tree | 53bf6c18456e2082ad3d7a7c5b471dcffda09399 /gcc/output.h | |
parent | 69bcf12417e8b2139aa1d54361ed01336f739489 (diff) | |
download | gcc-adf97f5809ecc5a286023e50fcf6302ad0f3f40a.zip gcc-adf97f5809ecc5a286023e50fcf6302ad0f3f40a.tar.gz gcc-adf97f5809ecc5a286023e50fcf6302ad0f3f40a.tar.bz2 |
pe.c (arm_pe_unique_section): Const-ify.
* pe.c (arm_pe_unique_section): Const-ify.
* pe.h (TARGET_ASM_NAMED_SECTION): Undef before defining.
(switch_to_section): Add static prototype.
* output.h (drectve_section): Prototype.
From-SVN: r46368
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/output.h b/gcc/output.h index 1e97c21..18afc85 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -194,6 +194,10 @@ extern void fini_section PARAMS ((void)); extern void tdesc_section PARAMS ((void)); #endif +#ifdef DRECTVE_SECTION_ASM_OP +extern void drectve_section PARAMS ((void)); +#endif + #ifdef TREE_CODE /* Tell assembler to change to section NAME for DECL. If DECL is NULL, just switch to section NAME. |