aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMatt Austern <austern@sgi.com>2000-01-07 16:37:04 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2000-01-07 16:37:04 +0000
commita47ce296b7e821a61388028a5e92ed5728881448 (patch)
treea3e90d1a6b631d1fbda9bff06b2e6da3c553535a /gcc
parent272c0b10f37c59d3991c72d2ee8b31f01ef3ff52 (diff)
downloadgcc-a47ce296b7e821a61388028a5e92ed5728881448.zip
gcc-a47ce296b7e821a61388028a5e92ed5728881448.tar.gz
gcc-a47ce296b7e821a61388028a5e92ed5728881448.tar.bz2
fold-const.c (real_hex_to_f): Remove duplicate declaration of expon.
* fold-const.c (real_hex_to_f): Remove duplicate declaration of expon. From-SVN: r31273
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/fold-const.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 90b18b7..ae628bc 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2000-01-07 Matt Austern <austern@sgi.com>
+
+ * fold-const.c (real_hex_to_f): Remove duplicate declaration of
+ expon.
+
Fri Jan 7 01:55:34 2000 Jeffrey A Law (law@cygnus.com)
* Makefile.in (crtend.o): Pass @inhibit_libc@ to compilation of
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index c540b19..976cf3a 100644
--- a/gcc/fold-const.c
+++ b/gcc/fold-const.c
@@ -987,7 +987,7 @@ real_hex_to_f (s, mode)
REAL_VALUE_TYPE ip;
char *p = s;
unsigned HOST_WIDE_INT low, high;
- int expon, shcount, nrmcount, k;
+ int shcount, nrmcount, k;
int sign, expsign, isfloat;
int lost = 0;/* Nonzero low order bits shifted out and discarded. */
int frexpon = 0; /* Bits after the decimal point. */