diff options
author | Richard Henderson <rth@cygnus.com> | 2000-04-06 23:15:22 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-04-06 23:15:22 -0700 |
commit | 391b788c041b80a613283307d0d37cc96ff0b6e3 (patch) | |
tree | 5f6f40f5219fafe384797ba9d0f5201b3432e715 /gcc | |
parent | 987db028252a8536ef5d5ba1f8c7cea44f170cea (diff) | |
download | gcc-391b788c041b80a613283307d0d37cc96ff0b6e3.zip gcc-391b788c041b80a613283307d0d37cc96ff0b6e3.tar.gz gcc-391b788c041b80a613283307d0d37cc96ff0b6e3.tar.bz2 |
* flow.c (compute_flow_dominators): Free worklist.
From-SVN: r32983
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/flow.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 09ff60b..11c7e96 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-04-06 Richard Henderson <rth@cygnus.com> + + * flow.c (compute_flow_dominators): Free worklist. + 2000-04-06 Michael Matz <matzmich@cs.tu-berlin.de> * flow.c (compute_flow_dominators): Process blocks FIFO not LIFO. @@ -5429,6 +5429,7 @@ compute_flow_dominators (dominators, post_dominators) } } + free (worklist); free (temp_bitmap); } |