Commit 7b25b076 by Graham Stott Committed by Graham Stott

sched-rgn.c (passed): Use sbitmap_free.


        * sched-rgn.c (passed): Use sbitmap_free.
        (header): Likewise.
        (inner): Likewise.
        (in_queue): Likewise.
        (in_stack): Likewise.

From-SVN: r48905
parent 4a8a9969
2002-01-26 Graham Stott <grahams@redhat.com>
* sched-rgn.c (passed): Use sbitmap_free.
(header): Likewise.
(inner): Likewise.
(in_queue): Likewise.
(in_stack): Likewise.
2002-01-15 Eric Christopher <echristo@redhat.com>
* flow.c (propagate_one_insn): Change to use fatal_insn.
......
/* Instruction scheduling pass.
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001 Free Software Foundation, Inc.
1999, 2000, 2001, 2002 Free Software Foundation, Inc.
Contributed by Michael Tiemann (tiemann@cygnus.com) Enhanced by,
and currently maintained by, Jim Wilson (wilson@cygnus.com)
......@@ -1028,11 +1028,11 @@ find_rgns (edge_list, dom)
free (max_hdr);
free (dfs_nr);
free (stack);
free (passed);
free (header);
free (inner);
free (in_queue);
free (in_stack);
sbitmap_free (passed);
sbitmap_free (header);
sbitmap_free (inner);
sbitmap_free (in_queue);
sbitmap_free (in_stack);
}
/* Functions for regions scheduling information. */
......
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