diff options
author | Richard Henderson <rth@redhat.com> | 2002-09-12 23:28:21 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-09-12 23:28:21 -0700 |
commit | 4d2d910c101d671ccf77ad26eeb7c682d29723b6 (patch) | |
tree | be874b476ede841d8545716cae7bc339cc83eb89 /gcc/print-rtl.c | |
parent | 6ab9a3f4a825a8b60b3230bc39c7995b2409d2e2 (diff) | |
download | gcc-4d2d910c101d671ccf77ad26eeb7c682d29723b6.zip gcc-4d2d910c101d671ccf77ad26eeb7c682d29723b6.tar.gz gcc-4d2d910c101d671ccf77ad26eeb7c682d29723b6.tar.bz2 |
Makefile.in (HOST_PRINT): Use print-rtl1.o
* 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.
From-SVN: r57092
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 eb59587..1364e94 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))) { |