diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-11-04 02:26:55 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-11-04 02:26:55 +0000 |
commit | 40cdfca60cab2c798fe7138a2d633b93bfd52c4f (patch) | |
tree | 1c47f44390c44ea148b2f6c62a3982f0c5742351 /gcc/output.h | |
parent | 76648a8bad33fe3207eedc498a44859f7d5318e8 (diff) | |
download | gcc-40cdfca60cab2c798fe7138a2d633b93bfd52c4f.zip gcc-40cdfca60cab2c798fe7138a2d633b93bfd52c4f.tar.gz gcc-40cdfca60cab2c798fe7138a2d633b93bfd52c4f.tar.bz2 |
dwarf2asm.c (dw2_asm_output_pcrel): Mark parameters with ATTRIBUTE_UNUSED.
* dwarf2asm.c (dw2_asm_output_pcrel): Mark parameters with
ATTRIBUTE_UNUSED.
* final.c (final_scan_insn): Add brackets around body of if-stmt.
* gcc.c (convert_filename): Add static prototype. Const-ify.
Wrap variable in macros controlling its use.
* output.h (sdata_section): Add prototype.
From-SVN: r46757
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 e18ceea..3923325 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -198,6 +198,10 @@ extern void tdesc_section PARAMS ((void)); extern void drectve_section PARAMS ((void)); #endif +#ifdef SDATA_SECTION_ASM_OP +extern void sdata_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. |