diff options
| author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-07 16:37:04 +0000 |
|---|---|---|
| committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-07 16:37:04 +0000 |
| commit | 7ad7ff0e91a3bc284e9075b16c7229ca75ac3382 (patch) | |
| tree | a3e90d1a6b631d1fbda9bff06b2e6da3c553535a | |
| parent | 05399e9174cdc8ffdca6bb0efbd2ead641844cdd (diff) | |
| download | ppe42-gcc-7ad7ff0e91a3bc284e9075b16c7229ca75ac3382.tar.gz ppe42-gcc-7ad7ff0e91a3bc284e9075b16c7229ca75ac3382.zip | |
* fold-const.c (real_hex_to_f): Remove duplicate declaration of
expon.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31273 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/fold-const.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 90b18b79a74..ae628bc0c5f 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 c540b19214c..976cf3aad30 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. */ |

