* lto.c (free_ltrans_partitions): Fix accidental commit.
authorJan Hubicka <jh@suse.cz>
Tue, 3 May 2011 18:00:48 +0000 (20:00 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Tue, 3 May 2011 18:00:48 +0000 (18:00 +0000)
From-SVN: r173336

gcc/lto/ChangeLog
gcc/lto/lto.c

index dea5f64808001a07df6f8fcb56020141c8018565..ca1bc6e4aefb491fed0c566f2d818bb2214c24e5 100644 (file)
@@ -1,3 +1,7 @@
+2011-05-03  Jan Hubicka  <jh@suse.cz>
+
+       * lto.c (free_ltrans_partitions): Fix accidental commit.
+
 2011-05-03  Jan Hubicka  <jh@suse.cz>
 
        * lto.c (ltrans_partition_def): Remove GTY annotations.
index 9407a172395ac20a8ec640db3f6fdd15dfe627e5..fdd163817759f87e4c87b3e1e31e84a44f4c3407 100644 (file)
@@ -1159,16 +1159,16 @@ new_partition (const char *name)
 
 /* Free memory used by ltrans datastructures.  */
 static void
-free_ltrans_partitions ()
+free_ltrans_partitions (void)
 {
   unsigned int idx;
   ltrans_partition part;
   for (idx = 0; VEC_iterate (ltrans_partition, ltrans_partitions, idx, part); idx++)
     {
-      free_cgraph_node_set (part->cgraph-set);
+      free_cgraph_node_set (part->cgraph_set);
       free (part);
     }
-  VEC_free (latrans_partition, heap, ltrans_partitions);
+  VEC_free (ltrans_partition, heap, ltrans_partitions);
 }
 
 /* See all references that go to comdat objects and bring them into partition too.  */