aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-01-23 01:57:51 +0000
committerJeff Law <law@gcc.gnu.org>1999-01-22 18:57:51 -0700
commitac4d524db2405478b59d56d1779adac9a0bb0ee7 (patch)
treecc67da6ca814833b1ec9c89e00a5e939800d37f0 /gcc
parent967ce1c002c14a2fddea5913f361b6cabd2d8ca6 (diff)
downloadgcc-ac4d524db2405478b59d56d1779adac9a0bb0ee7.zip
gcc-ac4d524db2405478b59d56d1779adac9a0bb0ee7.tar.gz
gcc-ac4d524db2405478b59d56d1779adac9a0bb0ee7.tar.bz2
fold-const.c (lshift_double): Mark 'prec' arguments as possibly unused.
* fold-const.c (lshift_double): Mark 'prec' arguments as possibly unused. From-SVN: r24830
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/fold-const.c4
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0e90c5b..cd9e67f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,8 @@
Sat Jan 23 01:37:36 1999 Jeffrey A Law (law@cygnus.com)
+ * fold-const.c (lshift_double): Mark 'prec' arguments as possibly
+ unused.
+
* bitmap.h (bitmap_head_def): Make indx field unsigned.
* configure.in (gcc_tooldir): When not making a relative gcc_tooldir,
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index 0937d74..2a78dd7 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;
{