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
e5115cf9
Commit
e5115cf9
authored
Apr 27, 2015
by
Eric Botcazou
Committed by
Eric Botcazou
Apr 27, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ipa-icf.c (icf_handled_component_p): Remove redundant tests.
From-SVN: r222455
parent
9e3a5131
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
gcc/ChangeLog
+4
-0
gcc/ipa-icf.c
+2
-3
No files found.
gcc/ChangeLog
View file @
e5115cf9
2015-04-27 Eric Botcazou <ebotcazou@adacore.com>
* ipa-icf.c (icf_handled_component_p): Remove redundant tests.
2015-04-27 Richard Sandiford <richard.sandiford@arm.com>
2015-04-27 Richard Sandiford <richard.sandiford@arm.com>
* vec.h (vec): Make splice arguments const. Update definitions
* vec.h (vec): Make splice arguments const. Update definitions
...
...
gcc/ipa-icf.c
View file @
e5115cf9
...
@@ -1806,9 +1806,8 @@ sem_function::icf_handled_component_p (tree t)
...
@@ -1806,9 +1806,8 @@ sem_function::icf_handled_component_p (tree t)
{
{
tree_code
tc
=
TREE_CODE
(
t
);
tree_code
tc
=
TREE_CODE
(
t
);
return
((
handled_component_p
(
t
))
return
(
handled_component_p
(
t
)
||
tc
==
ADDR_EXPR
||
tc
==
MEM_REF
||
tc
==
REALPART_EXPR
||
tc
==
ADDR_EXPR
||
tc
==
MEM_REF
||
tc
==
OBJ_TYPE_REF
);
||
tc
==
IMAGPART_EXPR
||
tc
==
OBJ_TYPE_REF
);
}
}
/* Basic blocks dictionary BB_DICT returns true if SOURCE index BB
/* Basic blocks dictionary BB_DICT returns true if SOURCE index BB
...
...
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