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
dd6d1ad7
Commit
dd6d1ad7
authored
Apr 21, 2010
by
Jan Hubicka
Committed by
Jan Hubicka
Apr 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ipa-prop.c (ipa_edge_removal_hook): Check for bounds.
From-SVN: r158610
parent
c9945504
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/ipa-prop.c
+4
-0
No files found.
gcc/ChangeLog
View file @
dd6d1ad7
2010-04-21 Jan Hubicka <jh@suse.cz>
* ipa-prop.c (ipa_edge_removal_hook): Check for bounds.
2010-04-21 Jan Hubicka <jh@suse.cz>
* varpool.c (decide_is_variable_needed): Variable is always needed
during ltrans.
...
...
gcc/ipa-prop.c
View file @
dd6d1ad7
...
...
@@ -1260,6 +1260,10 @@ ipa_edge_removal_hook (struct cgraph_edge *cs, void *data ATTRIBUTE_UNUSED)
static
void
ipa_node_removal_hook
(
struct
cgraph_node
*
node
,
void
*
data
ATTRIBUTE_UNUSED
)
{
/* During IPA-CP updating we can be called on not-yet analyze clones. */
if
(
VEC_length
(
ipa_node_params_t
,
ipa_node_params_vector
)
<=
(
unsigned
)
node
->
uid
)
return
;
ipa_free_node_params_substructures
(
IPA_NODE_REF
(
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