diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-07-08 23:44:15 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-07-08 23:44:15 +0000 |
commit | a3ef06687476fe76e793ae95eacda2bfe82c4778 (patch) | |
tree | 5a94bba9babc83867f1df1a447124e25246f21cc /gcc/print-rtl.c | |
parent | 9aa30c5bf4fc9849b41005f161c37b1c47941328 (diff) | |
download | gcc-a3ef06687476fe76e793ae95eacda2bfe82c4778.tar.gz |
* print-rtl.c (print_rtx): Revert previous patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@21019 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index d296f5c98b5..2e534cac2b3 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))) { - REAL_VALUE_TYPE val; + double val; REAL_VALUE_FROM_CONST_DOUBLE (val, in_rtx); fprintf (outfile, " [%.16g]", val); } |