diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-18 22:45:16 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-18 22:45:16 +0000 |
commit | 962f1324bd59c7d4119626f3bbd9d396bfdf1eb2 (patch) | |
tree | ab9ed6c6f336499678b637365114e2d4a553e281 /gcc/except.c | |
parent | 17f24ff04d5e70fdf5c20df8957f7a8864b10dbb (diff) | |
download | gcc-962f1324bd59c7d4119626f3bbd9d396bfdf1eb2.zip gcc-962f1324bd59c7d4119626f3bbd9d396bfdf1eb2.tar.gz gcc-962f1324bd59c7d4119626f3bbd9d396bfdf1eb2.tar.bz2 |
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
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/except.c b/gcc/except.c index 9e27fba..0a09fbd 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; |