mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 10:47:29 +08:00
* print-rtl.c (print_rtx): Use REAL_VALUE_TYPE instead of "double".
From-SVN: r20989
This commit is contained in:
parent
61632854ea
commit
29b1f8628f
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user