Commit 29b1f862 by Jeffrey A Law Committed by Jeff Law

* print-rtl.c (print_rtx): Use REAL_VALUE_TYPE instead of "double".

From-SVN: r20989
parent 61632854
Tue Jul 7 10:07:20 1998 Jeffrey A Law (law@cygnus.com)
* print-rtl.c (print_rtx): Use REAL_VALUE_TYPE instead of "double".
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
......
......@@ -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)))
{
double val;
REAL_VALUE_TYPE val;
REAL_VALUE_FROM_CONST_DOUBLE (val, in_rtx);
fprintf (outfile, " [%.16g]", 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