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
This commit is contained in:
Richard Henderson 2001-10-22 00:09:53 -07:00 committed by Richard Henderson
parent 33d4b70f02
commit e9cf0934ea
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -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));
});
}