diff options
Diffstat (limited to 'gcc/dce.c')
-rw-r--r-- | gcc/dce.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -163,7 +163,7 @@ marked_insn_p (rtx insn) /* Artificial defs are always needed and they do not have an insn. We should never see them here. */ gcc_assert (insn); - return TEST_BIT (marked, INSN_UID (insn)); + return bitmap_bit_p (marked, INSN_UID (insn)); } @@ -177,7 +177,7 @@ mark_insn (rtx insn, bool fast) { if (!fast) VEC_safe_push (rtx, heap, worklist, insn); - SET_BIT (marked, INSN_UID (insn)); + bitmap_set_bit (marked, INSN_UID (insn)); if (dump_file) fprintf (dump_file, " Adding insn %d to worklist\n", INSN_UID (insn)); if (CALL_P (insn) |