diff options
author | Richard Henderson <rth@gcc.gnu.org> | 2000-07-28 10:41:00 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-07-28 10:41:00 -0700 |
commit | 777ba8d110978fc69481e5f50ebcca1fd39a8542 (patch) | |
tree | 6c8504c759a008c6c314eb9333f8ba988727237e /gcc | |
parent | 63bc1d05cc767f4ba9e7b2799927fb9e51aa409e (diff) | |
download | gcc-777ba8d110978fc69481e5f50ebcca1fd39a8542.zip gcc-777ba8d110978fc69481e5f50ebcca1fd39a8542.tar.gz gcc-777ba8d110978fc69481e5f50ebcca1fd39a8542.tar.bz2 |
* emit-rtl.c (gen_lowpart_common): Add missing 'c' variable.
From-SVN: r35320
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/emit-rtl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index a34e6bb..440009b 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -931,6 +931,7 @@ gen_lowpart_common (mode, x) REAL_VALUE_TYPE r; long i[4]; /* Only the low 32 bits of each 'long' are used. */ int endian = WORDS_BIG_ENDIAN ? 1 : 0; + int c; REAL_VALUE_FROM_CONST_DOUBLE (r, x); switch (GET_MODE (x)) |