aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/print-rtl.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 944cb6a..6259f08 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jul 7 08:41:27 1998 Richard Henderson (rth@cygnus.com)
+
+ * print-rtl.c (print_rtx): Only print fp values when REAL_VALUE_TYPE
+ is a double.
+
Tue Jul 7 00:31:58 PDT 1998 Jeff Law (law@cygnus.com)
* version.c: Bump for snapshot.
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;