diff options
author | Richard Henderson <rth@cygnus.com> | 1998-07-07 01:42:42 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1998-07-07 01:42:42 -0700 |
commit | 61632854eadb9b821442a4ca7710afeae84cda6f (patch) | |
tree | d7dcd6ce330bf204b7a500fe95b84ae45d53024b /gcc/print-rtl.c | |
parent | 92ec03f59e84f558cc3e46369d744d89121b9501 (diff) | |
download | gcc-61632854eadb9b821442a4ca7710afeae84cda6f.zip gcc-61632854eadb9b821442a4ca7710afeae84cda6f.tar.gz gcc-61632854eadb9b821442a4ca7710afeae84cda6f.tar.bz2 |
print-rtl.c (print_rtx): Only print fp values when REAL_VALUE_TYPE is a double.
* print-rtl.c (print_rtx): Only print fp values when REAL_VALUE_TYPE
is a double.
From-SVN: r20988
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 893c001..2e534ca 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -269,7 +269,7 @@ print_rtx (in_rtx) abort (); } -#if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT +#if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT && LONG_DOUBLE_TYPE_SIZE == 64 if (GET_CODE (in_rtx) == CONST_DOUBLE && FLOAT_MODE_P (GET_MODE (in_rtx))) { double val; |