diff options
Diffstat (limited to 'gcc/genoutput.c')
-rw-r--r-- | gcc/genoutput.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gcc/genoutput.c b/gcc/genoutput.c index 6af827d..540685d 100644 --- a/gcc/genoutput.c +++ b/gcc/genoutput.c @@ -562,13 +562,8 @@ process_template (d, template) printf ("\nstatic char *\n"); printf ("output_%d (operands, insn)\n", d->code_number); - printf ("#ifdef __GNUC__\n"); - printf (" rtx *operands __attribute__ ((unused));\n"); - printf (" rtx insn __attribute__ ((unused));\n"); - printf ("#else\n"); - printf (" rtx *operands;\n"); - printf (" rtx insn;\n"); - printf ("#endif\n"); + printf (" rtx *operands ATTRIBUTE_UNUSED;\n"); + printf (" rtx insn ATTRIBUTE_UNUSED;\n"); printf ("{\n"); /* If the assembler code template starts with a @ it is a newline-separated |