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

From-SVN: r20989
This commit is contained in:
Jeffrey A Law 1998-07-07 09:09:31 +00:00 committed by Jeff Law
parent 61632854ea
commit 29b1f8628f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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

View 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)))
{
double val;
REAL_VALUE_TYPE val;
REAL_VALUE_FROM_CONST_DOUBLE (val, in_rtx);
fprintf (outfile, " [%.16g]", val);
}