diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-07 06:15:22 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-07 06:15:22 +0000 |
| commit | 18bc0e45c41f1dd982f769e31bdba8b5d2e7fe0b (patch) | |
| tree | 5f6f40f5219fafe384797ba9d0f5201b3432e715 | |
| parent | 9a5ab41497e01144b5bf176114081926c964f799 (diff) | |
| download | ppe42-gcc-18bc0e45c41f1dd982f769e31bdba8b5d2e7fe0b.tar.gz ppe42-gcc-18bc0e45c41f1dd982f769e31bdba8b5d2e7fe0b.zip | |
* flow.c (compute_flow_dominators): Free worklist.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32983 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 09ff60b6838..11c7e96cefd 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. diff --git a/gcc/flow.c b/gcc/flow.c index 1f32fe154cf..dc50d178b88 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -5429,6 +5429,7 @@ compute_flow_dominators (dominators, post_dominators) } } + free (worklist); free (temp_bitmap); } |

