mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 02:40:27 +08:00
* lto.c (free_ltrans_partitions): Fix accidental commit.
From-SVN: r173336
This commit is contained in:
parent
1cb1a99f77
commit
bb3398ca65
@ -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.
|
||||
|
@ -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. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user