summaryrefslogtreecommitdiffstats
path: root/gcc/print-rtl.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-07-07 09:09:31 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-07-07 09:09:31 +0000
commit3e32c4512b5b8ca7d9c47df4c570a422e23ad0aa (patch)
tree0c2cfd3783aab8169b2d0553b4261fa66071555d /gcc/print-rtl.c
parent81c93b27bcaf04cff4b9090121c5938da0e52e47 (diff)
downloadppe42-gcc-3e32c4512b5b8ca7d9c47df4c570a422e23ad0aa.tar.gz
ppe42-gcc-3e32c4512b5b8ca7d9c47df4c570a422e23ad0aa.zip
* print-rtl.c (print_rtx): Use REAL_VALUE_TYPE instead of "double".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20989 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r--gcc/print-rtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c
index 2e534cac2b3..d296f5c98b5 100644
--- a/gcc/print-rtl.c
+++ b/gcc/print-rtl.c
@@ -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);
}
OpenPOWER on IntegriCloud