Commit fa3df32d by Eric Botcazou Committed by Eric Botcazou

* df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.

From-SVN: r237279
parent 5f225ef4
2016-06-09 Eric Botcazou <ebotcazou@adacore.com>
* df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.
2016-06-09 Vladimir Makarov <vmakarov@redhat.com> 2016-06-09 Vladimir Makarov <vmakarov@redhat.com>
Jiong Wang <jiong.wang@arm.com> Jiong Wang <jiong.wang@arm.com>
......
...@@ -3498,13 +3498,13 @@ df_note_bb_compute (unsigned int bb_index, ...@@ -3498,13 +3498,13 @@ df_note_bb_compute (unsigned int bb_index,
FOR_BB_INSNS_REVERSE (bb, insn) FOR_BB_INSNS_REVERSE (bb, insn)
{ {
if (!INSN_P (insn))
continue;
df_insn_info *insn_info = DF_INSN_INFO_GET (insn); df_insn_info *insn_info = DF_INSN_INFO_GET (insn);
df_mw_hardreg *mw; df_mw_hardreg *mw;
int debug_insn; int debug_insn;
if (!INSN_P (insn))
continue;
debug_insn = DEBUG_INSN_P (insn); debug_insn = DEBUG_INSN_P (insn);
bitmap_clear (do_not_gen); bitmap_clear (do_not_gen);
......
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