diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-13 06:28:21 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-13 06:28:21 +0000 |
commit | c7be5df38a62ff4c0f7b373029e16b9b5e370b5f (patch) | |
tree | be874b476ede841d8545716cae7bc339cc83eb89 /gcc/print-rtl.c | |
parent | f087dfe1a3c810a29021b8422852f69ec7dd42e7 (diff) | |
download | gcc-c7be5df38a62ff4c0f7b373029e16b9b5e370b5f.tar.gz |
* Makefile.in (HOST_PRINT): Use print-rtl1.o
(print-rtl.o): Don't define GENERATOR_FILE.
(print-rtl1.o): Rename from $(BUILD_PREFIX_1)print-rtl.o.
* print-rtl.c (print_rtx): Include CONST_DOUBLE fp decimal output
unless GENERATOR_FILE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57092 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index eb59587ed69..1364e9498dd 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -513,10 +513,7 @@ print_rtx (in_rtx) fputc (']', outfile); break; -#if 0 - /* It would be nice to do this, but it would require real.o to - be linked into the MD-generator programs. Maybe we should - do that. -zw 2002-03-03 */ +#ifndef GENERATOR_FILE case CONST_DOUBLE: if (FLOAT_MODE_P (GET_MODE (in_rtx))) { |