Commit ed270997 by David Malcolm Committed by David Malcolm

bb_note returns a rtx_note *

2014-08-19  David Malcolm  <dmalcolm@redhat.com>

	* basic-block.h (bb_note): Strengthen return type from rtx to
	rtx_note *.
	* sched-int.h (bb_note): Likewise.
	* cfgrtl.c (bb_note): Likewise.  Add a checked cast to rtx_note *.

From-SVN: r214188
parent 167b9fae
2014-08-19 David Malcolm <dmalcolm@redhat.com> 2014-08-19 David Malcolm <dmalcolm@redhat.com>
* basic-block.h (bb_note): Strengthen return type from rtx to
rtx_note *.
* sched-int.h (bb_note): Likewise.
* cfgrtl.c (bb_note): Likewise. Add a checked cast to rtx_note *.
2014-08-19 David Malcolm <dmalcolm@redhat.com>
* rtl.h (make_insn_raw): Strengthen return type from rtx to * rtl.h (make_insn_raw): Strengthen return type from rtx to
rtx_insn *. rtx_insn *.
......
...@@ -801,7 +801,7 @@ extern basic_block * single_pred_before_succ_order (void); ...@@ -801,7 +801,7 @@ extern basic_block * single_pred_before_succ_order (void);
/* In cfgrtl.c */ /* In cfgrtl.c */
extern rtx block_label (basic_block); extern rtx block_label (basic_block);
extern rtx bb_note (basic_block); extern rtx_note *bb_note (basic_block);
extern bool purge_all_dead_edges (void); extern bool purge_all_dead_edges (void);
extern bool purge_dead_edges (basic_block); extern bool purge_dead_edges (basic_block);
extern bool fixup_abnormal_edges (void); extern bool fixup_abnormal_edges (void);
......
...@@ -661,7 +661,7 @@ could_fall_through (basic_block src, basic_block target) ...@@ -661,7 +661,7 @@ could_fall_through (basic_block src, basic_block target)
} }
/* Return the NOTE_INSN_BASIC_BLOCK of BB. */ /* Return the NOTE_INSN_BASIC_BLOCK of BB. */
rtx rtx_note *
bb_note (basic_block bb) bb_note (basic_block bb)
{ {
rtx note; rtx note;
...@@ -671,7 +671,7 @@ bb_note (basic_block bb) ...@@ -671,7 +671,7 @@ bb_note (basic_block bb)
note = NEXT_INSN (note); note = NEXT_INSN (note);
gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note)); gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
return note; return as_a <rtx_note *> (note);
} }
/* Return the INSN immediately following the NOTE_INSN_BASIC_BLOCK /* Return the INSN immediately following the NOTE_INSN_BASIC_BLOCK
......
...@@ -1368,7 +1368,7 @@ extern void sched_change_pattern (rtx, rtx); ...@@ -1368,7 +1368,7 @@ extern void sched_change_pattern (rtx, rtx);
extern int sched_speculate_insn (rtx, ds_t, rtx *); extern int sched_speculate_insn (rtx, ds_t, rtx *);
extern void unlink_bb_notes (basic_block, basic_block); extern void unlink_bb_notes (basic_block, basic_block);
extern void add_block (basic_block, basic_block); extern void add_block (basic_block, basic_block);
extern rtx bb_note (basic_block); extern rtx_note *bb_note (basic_block);
extern void concat_note_lists (rtx, rtx *); extern void concat_note_lists (rtx, rtx *);
extern rtx sched_emit_insn (rtx); extern rtx sched_emit_insn (rtx);
extern rtx get_ready_element (int); extern rtx get_ready_element (int);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment