Commit 962f1324 by Kaveh R. Ghazi Committed by Kaveh Ghazi

calls.c (emit_call_1): Mark parameter with ATTRIBUTE_UNUSED.

        * calls.c (emit_call_1): Mark parameter with ATTRIBUTE_UNUSED.

        * except.c (eh_regs): Likewise.

        * final.c (output_operand): Likewise.

        * fold-const.c (target_isinf, target_isnan): Likewise.

From-SVN: r31490
parent 17f24ff0
2000-01-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* calls.c (emit_call_1): Mark parameter with ATTRIBUTE_UNUSED.
* except.c (eh_regs): Likewise.
* final.c (output_operand): Likewise.
* fold-const.c (target_isinf, target_isnan): Likewise.
Tue Jan 18 16:19:55 MET 2000 Jan Hubicka <hubicka@freesoft.cz> Tue Jan 18 16:19:55 MET 2000 Jan Hubicka <hubicka@freesoft.cz>
* i386.h (BIGGEST_ALIGNMENT): Set to 128. * i386.h (BIGGEST_ALIGNMENT): Set to 128.
......
...@@ -386,7 +386,7 @@ emit_call_1 (funexp, fndecl, funtype, stack_size, rounded_stack_size, ...@@ -386,7 +386,7 @@ emit_call_1 (funexp, fndecl, funtype, stack_size, rounded_stack_size,
tree funtype ATTRIBUTE_UNUSED; tree funtype ATTRIBUTE_UNUSED;
HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED; HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED;
HOST_WIDE_INT rounded_stack_size; HOST_WIDE_INT rounded_stack_size;
HOST_WIDE_INT struct_value_size; HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED;
rtx next_arg_reg; rtx next_arg_reg;
rtx valreg; rtx valreg;
int old_inhibit_defer_pop; int old_inhibit_defer_pop;
......
...@@ -2900,7 +2900,7 @@ expand_builtin_frob_return_addr (addr_tree) ...@@ -2900,7 +2900,7 @@ expand_builtin_frob_return_addr (addr_tree)
static void static void
eh_regs (pcontext, psp, pra, outgoing) eh_regs (pcontext, psp, pra, outgoing)
rtx *pcontext, *psp, *pra; rtx *pcontext, *psp, *pra;
int outgoing; int outgoing ATTRIBUTE_UNUSED;
{ {
rtx rcontext, rsp, rra; rtx rcontext, rsp, rra;
int i; int i;
......
...@@ -3578,7 +3578,7 @@ output_asm_label (x) ...@@ -3578,7 +3578,7 @@ output_asm_label (x)
static void static void
output_operand (x, code) output_operand (x, code)
rtx x; rtx x;
int code; int code ATTRIBUTE_UNUSED;
{ {
if (x && GET_CODE (x) == SUBREG) if (x && GET_CODE (x) == SUBREG)
x = alter_subreg (x); x = alter_subreg (x);
......
...@@ -874,7 +874,7 @@ target_negative (x) ...@@ -874,7 +874,7 @@ target_negative (x)
int int
target_isinf (x) target_isinf (x)
REAL_VALUE_TYPE x; REAL_VALUE_TYPE x ATTRIBUTE_UNUSED;
{ {
return 0; return 0;
} }
...@@ -884,7 +884,7 @@ target_isinf (x) ...@@ -884,7 +884,7 @@ target_isinf (x)
int int
target_isnan (x) target_isnan (x)
REAL_VALUE_TYPE x; REAL_VALUE_TYPE x ATTRIBUTE_UNUSED;
{ {
return 0; return 0;
} }
......
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