Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
bb3398ca
Commit
bb3398ca
authored
May 03, 2011
by
Jan Hubicka
Committed by
Jan Hubicka
May 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lto.c (free_ltrans_partitions): Fix accidental commit.
From-SVN: r173336
parent
1cb1a99f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/lto/ChangeLog
+4
-0
gcc/lto/lto.c
+3
-3
No files found.
gcc/lto/ChangeLog
View file @
bb3398ca
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.
(ltrans_partitions): Move to heap.
(new_partition): Update.
...
...
gcc/lto/lto.c
View file @
bb3398ca
...
...
@@ -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
(
l
a
trans_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. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment