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
58efc3ac
Commit
58efc3ac
authored
May 19, 2010
by
Jan Hubicka
Committed by
Jan Hubicka
May 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ipa-reference.c (propagate): Walk all nodes in the cleanup stage.
From-SVN: r159546
parent
0495bafc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+4
-0
gcc/ipa-reference.c
+4
-2
No files found.
gcc/ChangeLog
View file @
58efc3ac
2010-05-18 Jan Hubicka <jh@suse.cz>
* ipa-reference.c (propagate): Walk all nodes in the cleanup stage.
2010-05-18 Vladimir Makarov <vmakarov@redhat.com>
2010-05-18 Vladimir Makarov <vmakarov@redhat.com>
PR rtl-optimization/43332
PR rtl-optimization/43332
...
...
gcc/ipa-reference.c
View file @
58efc3ac
...
@@ -835,13 +835,15 @@ propagate (void)
...
@@ -835,13 +835,15 @@ propagate (void)
}
}
/* Cleanup. */
/* Cleanup. */
for
(
i
=
0
;
i
<
order_pos
;
i
++
)
for
(
node
=
cgraph_nodes
;
node
;
node
=
node
->
next
)
{
{
ipa_reference_vars_info_t
node_info
;
ipa_reference_vars_info_t
node_info
;
ipa_reference_global_vars_info_t
node_g
;
ipa_reference_global_vars_info_t
node_g
;
ipa_reference_optimization_summary_t
opt
;
ipa_reference_optimization_summary_t
opt
;
node
=
order
[
i
];
if
(
!
node
->
analyzed
)
continue
;
node_info
=
get_reference_vars_info
(
node
);
node_info
=
get_reference_vars_info
(
node
);
if
(
cgraph_function_body_availability
(
node
)
>
AVAIL_OVERWRITABLE
)
if
(
cgraph_function_body_availability
(
node
)
>
AVAIL_OVERWRITABLE
)
{
{
...
...
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