diff options
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/varasm.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index daed3ba..141d8eb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -72,6 +72,9 @@ * function.c (thread_prologue_and_epilogue_insns): Add ATTRIBUTE_UNUSED to seq, epilogue_end and entry_edge. + PR bootstrap/44756 + * varasm.c (asm_output_bss): Add ATTRIBUTE_UNUSED to function. + 2010-11-04 Ira Rosen <irar@il.ibm.com> PR tree-optimization/46213 diff --git a/gcc/varasm.c b/gcc/varasm.c index 20c4ffd..4739410 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -473,7 +473,7 @@ resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED, ??? It is believed that this function will work in most cases so such support is localized here. */ -static void +static void ATTRIBUTE_UNUSED asm_output_bss (FILE *file, tree decl ATTRIBUTE_UNUSED, const char *name, unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED, |