print-rtl.c (print_rtx): Only print fp values when REAL_VALUE_TYPE is a double.
authorRichard Henderson <rth@cygnus.com>
Tue, 7 Jul 1998 08:42:42 +0000 (01:42 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Tue, 7 Jul 1998 08:42:42 +0000 (01:42 -0700)
        * print-rtl.c (print_rtx): Only print fp values when REAL_VALUE_TYPE
        is a double.

From-SVN: r20988

gcc/ChangeLog
gcc/print-rtl.c

index 944cb6a20ff0ecc2e21788063e0cb46624e053d9..6259f08e9c40da03dffa7fd313aed49a61f97b57 100644 (file)
@@ -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.
index 893c0018b58bf6c230b557a5eb8066806e5603d6..2e534cac2b3e459eb5cf78f661e3e52139047555 100644 (file)
@@ -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;