flow.c (clear_log_links): Use free_INSN_LIST_list, not free_EXPR_LIST_list for LOG_LINKS.
authorRichard Henderson <rth@redhat.com>
Mon, 22 Oct 2001 07:09:53 +0000 (00:09 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Mon, 22 Oct 2001 07:09:53 +0000 (00:09 -0700)
        * flow.c (clear_log_links): Use free_INSN_LIST_list, not
        free_EXPR_LIST_list for LOG_LINKS.

From-SVN: r46401

gcc/ChangeLog
gcc/flow.c

index e1fe57c939137415cde4ea64ef64e903c5fb417d..c5113b365913608587dae00d4733124ce41a3e99 100644 (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.
index 58bf25724c0dd6dd883327277532811eeb89d97a..dc305b606f56428d6cbbce0947ee24e6a7a8d566 100644 (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));
       });
 }