diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-23 21:15:45 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-23 21:15:45 +0000 |
commit | b2581353700a8395ff63dd00c5dfbbd6d5c774fe (patch) | |
tree | 93af7f757418cc8f710603763022daa9f3737e97 /gcc/print-rtl.c | |
parent | 78c26657011887dc868e2045f90ab09ea268d603 (diff) | |
download | gcc-b2581353700a8395ff63dd00c5dfbbd6d5c774fe.tar.gz |
* print-rtl.c (print_rtx <case 'b'>): Don't attempt to print
bitmap contents if GENERATOR_FILE is defined.
* Makefile.in (BUILD_RTL): Remove $(BUILD_PREFIX)bitmap.o.
($(BUILD_PREFIX_1)bitmap.o): Delete rule.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85095 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 8b211f076ac..7ae35a08f0a 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -484,10 +484,14 @@ print_rtx (rtx in_rtx) break; case 'b': +#ifdef GENERATOR_FILE + fputs (" {bitmap}", outfile); +#else if (XBITMAP (in_rtx, i) == NULL) fputs (" {null}", outfile); else bitmap_print (outfile, XBITMAP (in_rtx, i), " {", "}"); +#endif sawclose = 0; break; |