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/fold-const.c | |
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/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |