diff options
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -4110,7 +4110,6 @@ clear_log_links (blocks) if (!blocks) { - rtx insn; for (insn = get_insns (); insn; insn = NEXT_INSN (insn)) if (INSN_P (insn)) free_INSN_LIST_list (&LOG_LINKS (insn)); @@ -4119,7 +4118,7 @@ clear_log_links (blocks) EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i, { basic_block bb = BASIC_BLOCK (i); - rtx insn; + for (insn = bb->head; insn != NEXT_INSN (bb->end); insn = NEXT_INSN (insn)) if (INSN_P (insn)) |