* print-rtl.c (print_rtx): Revert previous patch.
authorJeffrey A Law <law@cygnus.com>
Wed, 8 Jul 1998 23:44:15 +0000 (23:44 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 8 Jul 1998 23:44:15 +0000 (17:44 -0600)
From-SVN: r21019

gcc/ChangeLog
gcc/print-rtl.c

index 31ed342f05b0735e39b8f7fab3455264e765498d..a9a3f841d2dadc14cfc9e87be43747d8890b9080 100644 (file)
@@ -1,5 +1,7 @@
 Wed Jul  8 21:43:14 1998  Jeffrey A Law  (law@cygnus.com)
 
+       * print-rtl.c (print_rtx): Revert previous patch.
+
        * jump.c (duplicate_loop_exit_test): Do not duplicate the loop exit
        test if the exit code has an insn with ASM_OPERANDS.
 
index d296f5c98b5a28688c23f157158b119d476a1daf..2e534cac2b3e459eb5cf78f661e3e52139047555 100644 (file)
@@ -272,7 +272,7 @@ print_rtx (in_rtx)
 #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)))
     {
-      REAL_VALUE_TYPE val;
+      double val;
       REAL_VALUE_FROM_CONST_DOUBLE (val, in_rtx);
       fprintf (outfile, " [%.16g]", val);
     }