aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>2000-04-06 23:15:22 -0700
committerRichard Henderson <rth@gcc.gnu.org>2000-04-06 23:15:22 -0700
commit391b788c041b80a613283307d0d37cc96ff0b6e3 (patch)
tree5f6f40f5219fafe384797ba9d0f5201b3432e715 /gcc
parent987db028252a8536ef5d5ba1f8c7cea44f170cea (diff)
downloadgcc-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/ChangeLog4
-rw-r--r--gcc/flow.c1
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.
diff --git a/gcc/flow.c b/gcc/flow.c
index 1f32fe1..dc50d17 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -5429,6 +5429,7 @@ compute_flow_dominators (dominators, post_dominators)
}
}
+ free (worklist);
free (temp_bitmap);
}