diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-18 22:45:16 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-18 22:45:16 +0000 |
commit | 2c3bea77287bef3eafe261e78d077f610940c711 (patch) | |
tree | ab9ed6c6f336499678b637365114e2d4a553e281 /gcc | |
parent | 4e17b6343bcb8830bc54a681c6168e6fde77dd23 (diff) | |
download | ppe42-gcc-2c3bea77287bef3eafe261e78d077f610940c711.tar.gz ppe42-gcc-2c3bea77287bef3eafe261e78d077f610940c711.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31490 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 10 | ||||
-rw-r--r-- | gcc/calls.c | 2 | ||||
-rw-r--r-- | gcc/except.c | 2 | ||||
-rw-r--r-- | gcc/final.c | 2 | ||||
-rw-r--r-- | gcc/fold-const.c | 4 |
5 files changed, 15 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b724cc70488..c4378451e61 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,13 @@ +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> * i386.h (BIGGEST_ALIGNMENT): Set to 128. diff --git a/gcc/calls.c b/gcc/calls.c index 86ae3254e2b..8c136858c97 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -386,7 +386,7 @@ emit_call_1 (funexp, fndecl, funtype, stack_size, rounded_stack_size, tree funtype ATTRIBUTE_UNUSED; HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED; 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 valreg; int old_inhibit_defer_pop; diff --git a/gcc/except.c b/gcc/except.c index 9e27fbab2db..0a09fbdd745 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -2900,7 +2900,7 @@ expand_builtin_frob_return_addr (addr_tree) static void eh_regs (pcontext, psp, pra, outgoing) rtx *pcontext, *psp, *pra; - int outgoing; + int outgoing ATTRIBUTE_UNUSED; { rtx rcontext, rsp, rra; int i; diff --git a/gcc/final.c b/gcc/final.c index f94a02f4f10..c38b5ae43db 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -3578,7 +3578,7 @@ output_asm_label (x) static void output_operand (x, code) rtx x; - int code; + int code ATTRIBUTE_UNUSED; { if (x && GET_CODE (x) == SUBREG) x = alter_subreg (x); diff --git a/gcc/fold-const.c b/gcc/fold-const.c index d3efe90928e..84c452d1cc3 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -874,7 +874,7 @@ target_negative (x) int target_isinf (x) - REAL_VALUE_TYPE x; + REAL_VALUE_TYPE x ATTRIBUTE_UNUSED; { return 0; } @@ -884,7 +884,7 @@ target_isinf (x) int target_isnan (x) - REAL_VALUE_TYPE x; + REAL_VALUE_TYPE x ATTRIBUTE_UNUSED; { return 0; } |