Commit e9cf0934 by Richard Henderson Committed by Richard Henderson

flow.c (clear_log_links): Use free_INSN_LIST_list, not free_EXPR_LIST_list for LOG_LINKS.

        * flow.c (clear_log_links): Use free_INSN_LIST_list, not
        free_EXPR_LIST_list for LOG_LINKS.

From-SVN: r46401
parent 33d4b70f
2001-10-22 Richard Henderson <rth@redhat.com>
* flow.c (clear_log_links): Use free_INSN_LIST_list, not
free_EXPR_LIST_list for LOG_LINKS.
2001-10-21 Robert Lipe <robertlipe@usa.net>
* config/i386/i386.c (sco_asm_named_section): Delete.
......
......@@ -4113,7 +4113,7 @@ clear_log_links (blocks)
rtx insn;
for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
if (INSN_P (insn))
free_EXPR_LIST_list (&LOG_LINKS (insn));
free_INSN_LIST_list (&LOG_LINKS (insn));
}
else
EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i,
......@@ -4123,7 +4123,7 @@ clear_log_links (blocks)
for (insn = bb->head; insn != NEXT_INSN (bb->end);
insn = NEXT_INSN (insn))
if (INSN_P (insn))
free_EXPR_LIST_list (&LOG_LINKS (insn));
free_INSN_LIST_list (&LOG_LINKS (insn));
});
}
......
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