Commit 05b13f59 by Kaveh R. Ghazi Committed by Kaveh Ghazi

varasm.c (asm_output_bss): Mark parameters with ATTRIBUTE_UNUSED.

        * varasm.c (asm_output_bss): Mark parameters with ATTRIBUTE_UNUSED.
        (asm_emit_uninitialised): Likewise.

From-SVN: r31425
parent 0025b7fa
2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* varasm.c (asm_output_bss): Mark parameters with ATTRIBUTE_UNUSED.
(asm_emit_uninitialised): Likewise.
2000-01-13 Gavin Romig-Koch <gavin@cygnus.com> 2000-01-13 Gavin Romig-Koch <gavin@cygnus.com>
* config/mips/mips.h (ISA_HAS_INT_CONDMOVE): New. * config/mips/mips.h (ISA_HAS_INT_CONDMOVE): New.
......
...@@ -375,9 +375,9 @@ bss_section () ...@@ -375,9 +375,9 @@ bss_section ()
static void static void
asm_output_bss (file, decl, name, size, rounded) asm_output_bss (file, decl, name, size, rounded)
FILE *file; FILE *file;
tree decl; tree decl ATTRIBUTE_UNUSED;
char *name; char *name;
int size, rounded; int size ATTRIBUTE_UNUSED, rounded;
{ {
ASM_GLOBALIZE_LABEL (file, name); ASM_GLOBALIZE_LABEL (file, name);
bss_section (); bss_section ();
...@@ -1232,7 +1232,7 @@ static void ...@@ -1232,7 +1232,7 @@ static void
asm_emit_uninitialised (decl, name, size, rounded) asm_emit_uninitialised (decl, name, size, rounded)
tree decl; tree decl;
char * name; char * name;
int size; int size ATTRIBUTE_UNUSED;
int rounded ATTRIBUTE_UNUSED; int rounded ATTRIBUTE_UNUSED;
{ {
enum enum
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment