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
7b395ddd
Commit
7b395ddd
authored
Sep 08, 2013
by
Jan Hubicka
Committed by
Jan Hubicka
Sep 08, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ipa.c (walk_polymorphic_call_targets): Fix inliner summary update.
From-SVN: r202370
parent
c34c46dd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/ipa.c
+3
-3
No files found.
gcc/ChangeLog
View file @
7b395ddd
2013-09-08 Jan Hubicka <jh@suse.cz>
* ipa.c (walk_polymorphic_call_targets): Fix inliner summary update.
2013-09-08 Richard Sandiford <rdsandiford@googlemail.com>
* ira.c (update_equiv_regs): Only call set_paradoxical_subreg
...
...
gcc/ipa.c
View file @
7b395ddd
...
...
@@ -206,7 +206,7 @@ walk_polymorphic_call_targets (pointer_set_t *reachable_call_targets,
{
if
(
targets
.
length
()
<=
1
)
{
cgraph_node
*
target
;
cgraph_node
*
target
,
*
node
=
edge
->
caller
;
if
(
targets
.
length
()
==
1
)
target
=
targets
[
0
];
else
...
...
@@ -222,8 +222,8 @@ walk_polymorphic_call_targets (pointer_set_t *reachable_call_targets,
edge
=
cgraph_make_edge_direct
(
edge
,
target
);
if
(
cgraph_state
!=
CGRAPH_STATE_IPA_SSA
)
cgraph_redirect_edge_call_stmt_to_callee
(
edge
);
else
inline_update_overall_summary
(
edge
->
caller
);
else
if
(
inline_summary_vec
)
inline_update_overall_summary
(
node
);
}
}
}
...
...
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