diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-04 16:04:44 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-04 16:04:44 +0000 |
commit | d6df780c4d82046ecfe40971c8d903ef31bc2711 (patch) | |
tree | e83250df907c02908868ac2ea29ff265d1c51f8f /gcc/haifa-sched.c | |
parent | aa5773bc6992261219b3fbd0331a1575c2e37015 (diff) | |
download | gcc-d6df780c4d82046ecfe40971c8d903ef31bc2711.tar.gz |
* haifa-sched.c (schedule_insns): Free the flow edge list when it
is no longer needed
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33673 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/haifa-sched.c')
-rw-r--r-- | gcc/haifa-sched.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index 83d85fdbe33..aa0eddcb763 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -6918,6 +6918,9 @@ schedule_insns (dump_file) if (sched_verbose >= 3) debug_regions (); + /* We are done with flow's edge list. */ + free_edge_list (edge_list); + /* For now. This will move as more and more of haifa is converted to using the cfg code in flow.c. */ free (dom); |