diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-04 02:26:55 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-04 02:26:55 +0000 |
commit | 7e6b5e5494a3eb9df27b3857e950d0765c6a896c (patch) | |
tree | 1c47f44390c44ea148b2f6c62a3982f0c5742351 /gcc/dwarf2asm.c | |
parent | f6020ad06e9ede8f429e9b6d24f1e4c5dccb6d20 (diff) | |
download | gcc-7e6b5e5494a3eb9df27b3857e950d0765c6a896c.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46757 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarf2asm.c')
-rw-r--r-- | gcc/dwarf2asm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/dwarf2asm.c b/gcc/dwarf2asm.c index 281cb4674a5..25b5dc68075 100644 --- a/gcc/dwarf2asm.c +++ b/gcc/dwarf2asm.c @@ -190,7 +190,8 @@ dw2_asm_output_offset VPARAMS ((int size, const char *label, different section or object file. */ void -dw2_asm_output_pcrel VPARAMS ((int size, const char *label, +dw2_asm_output_pcrel VPARAMS ((int size ATTRIBUTE_UNUSED, + const char *label ATTRIBUTE_UNUSED, const char *comment, ...)) { VA_OPEN (ap, comment); |