summaryrefslogtreecommitdiff
path: root/gcc/fold-const.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-01-23 01:57:51 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-01-23 01:57:51 +0000
commit48d0393f367e33534bdce6d61a3eccef2a39a60c (patch)
treecc67da6ca814833b1ec9c89e00a5e939800d37f0 /gcc/fold-const.c
parent61576a82343df37b74400a902260b78923a1e936 (diff)
downloadgcc-48d0393f367e33534bdce6d61a3eccef2a39a60c.tar.gz
* fold-const.c (lshift_double): Mark 'prec' arguments as possibly
unused. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24830 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r--gcc/fold-const.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index 0937d74af0c..2a78dd7362a 100644
--- a/gcc/fold-const.c
+++ b/gcc/fold-const.c
@@ -1,5 +1,5 @@
/* Fold a constant sub-tree into a single node for C-compiler
- Copyright (C) 1987, 88, 92-97, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1987, 88, 92-98, 1999 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -378,7 +378,7 @@ lshift_double (l1, h1, count, prec, lv, hv, arith)
void
rshift_double (l1, h1, count, prec, lv, hv, arith)
HOST_WIDE_INT l1, h1, count;
- int prec;
+ int prec ATTRIBUTE_UNUSED;
HOST_WIDE_INT *lv, *hv;
int arith;
{