diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-08-31 09:55:30 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-08-31 09:55:30 +0000 |
commit | 4ebfcf7f95fc8c6eadb8967840ad72c4cfd63fe9 (patch) | |
tree | 9e886c4b19e40538e3729b82c2f8766fd5be7fa8 /gcc/print-rtl.c | |
parent | acfd47245c6b676477e7c34b070537d39f7e5023 (diff) | |
download | gcc-4ebfcf7f95fc8c6eadb8967840ad72c4cfd63fe9.tar.gz |
�
* print-rtl.c (print_rtx): NOTE_INSN_LIVE has an rtx not a bitmap.
* haifa-sched.c (sched_analyze): Handle NOTE_INSN_RANGE_START
and NOTE_INSN_RANGE_END specially.
(reemit_notes): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22126 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 947a9b767c8..0415308cd35 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -124,7 +124,8 @@ print_rtx (in_rtx) if (i == 3 && GET_CODE (in_rtx) == NOTE && (NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_RANGE_START - || NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_RANGE_END)) + || NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_RANGE_END + || NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_LIVE)) { indent += 2; if (!sawclose) @@ -134,16 +135,6 @@ print_rtx (in_rtx) break; } - if (i == 3 && GET_CODE (in_rtx) == NOTE - && NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_LIVE) - { - if (XBITMAP (in_rtx, i) == NULL) - fprintf (outfile, " {null}"); - else - bitmap_print (outfile, XBITMAP (in_rtx, i), " {", "}"); - sawclose = 0; - } - if (XSTR (in_rtx, i) == 0) fprintf (outfile, " \"\""); else |