diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2000-04-21 19:32:10 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2000-04-21 15:32:10 -0400 |
commit | b3b42a4db6bd74ef385b4efbcf92ba621f35999f (patch) | |
tree | 9ad1235a2087bdb5a1b90471613c6954a032f6d4 /gcc/rtl.h | |
parent | c5e1237fde9577950fa7854a30da98d75703aa36 (diff) | |
download | gcc-b3b42a4db6bd74ef385b4efbcf92ba621f35999f.zip gcc-b3b42a4db6bd74ef385b4efbcf92ba621f35999f.tar.gz gcc-b3b42a4db6bd74ef385b4efbcf92ba621f35999f.tar.bz2 |
rtl.c: Use NOTE_INSN_REPEATED_LINE_NUMBER and NOTE_INSN_RANGE_BEG.
* rtl.c: Use NOTE_INSN_REPEATED_LINE_NUMBER and NOTE_INSN_RANGE_BEG.
* rtl.h: Likewise.
* rtl.def: Update comment.
* function.c (expand_function): Use NOTE_INSN_REPEATED_LINE_NUMBER.
* integrate.c (expand_inline_function): Likewise.
* profile.c (branch_prob): Likewise.
* ggc-common.c (ggc_mark_rtx_children): Use NOTE_INSN_RANGE_BEG.
* print-rtl.c (print_rtx): Likewise.
* haifa-sched.c (sched_analyze, unlink_other_notes): Likewise.
(reemit_notes): Likewise; also use enum insn_note.
From-SVN: r33314
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -636,11 +636,11 @@ enum insn_note /* Generated whenever a duplicate line number note is output. For example, one is output after the end of an inline function, in order to prevent the line containing the inline call from being counted twice in gcov. */ - NOTE_REPEATED_LINE_NUMBER, + NOTE_INSN_REPEATED_LINE_NUMBER, /* Start/end of a live range region, where pseudos allocated on the stack can be allocated to temporary registers. Uses NOTE_RANGE_INFO. */ - NOTE_INSN_RANGE_START, + NOTE_INSN_RANGE_BEG, NOTE_INSN_RANGE_END, /* Record which registers are currently live. Uses NOTE_LIVE_INFO. */ |