Commit 61632854 by Richard Henderson Committed by Richard Henderson

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
parent 92ec03f5
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.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment