From 2c3bea77287bef3eafe261e78d077f610940c711 Mon Sep 17 00:00:00 2001 From: ghazi Date: Tue, 18 Jan 2000 22:45:16 +0000 Subject: * 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 --- gcc/fold-const.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/fold-const.c') 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; } -- cgit v1.2.1