OSDN Git Service

PR tree-optimization/21096
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 19 Apr 2005 11:43:24 +0000 (11:43 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 19 Apr 2005 11:43:24 +0000 (11:43 +0000)
* tree-ssa-copy.c (fini_copy_prop): Free cached_last_copy_of.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98405 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-ssa-copy.c

index 4dfe83b..844197d 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-19  Kazu Hirata  <kazu@cs.umass.edu>
+
+       PR tree-optimization/21096
+       * tree-ssa-copy.c (fini_copy_prop): Free cached_last_copy_of.
+
 2005-04-19  Alan Modra  <amodra@bigpond.net.au>
 
        PR target/21098
index b9544f8..e657bdb 100644 (file)
@@ -901,6 +901,7 @@ fini_copy_prop (void)
 
   substitute_and_fold (copy_of);
 
+  free (cached_last_copy_of);
   free (copy_of);
 }