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
c464c0db
Commit
c464c0db
authored
Feb 19, 2016
by
Jakub Jelinek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweak comment further.
From-SVN: r233567
parent
4b6c824a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
gcc/expr.c
+3
-1
No files found.
gcc/expr.c
View file @
c464c0db
...
@@ -6649,7 +6649,9 @@ store_field (rtx target, HOST_WIDE_INT bitsize, HOST_WIDE_INT bitpos,
...
@@ -6649,7 +6649,9 @@ store_field (rtx target, HOST_WIDE_INT bitsize, HOST_WIDE_INT bitpos,
includes some extra padding. store_expr / expand_expr will in
includes some extra padding. store_expr / expand_expr will in
that case call get_inner_reference that will have the bitsize
that case call get_inner_reference that will have the bitsize
we check here and thus the block move will not clobber the
we check here and thus the block move will not clobber the
padding that shouldn't be clobbered. */
padding that shouldn't be clobbered. In the future we could
replace the TREE_ADDRESSABLE check with a check that
get_base_address needs to live in memory. */
&&
(
!
TREE_ADDRESSABLE
(
TREE_TYPE
(
exp
))
&&
(
!
TREE_ADDRESSABLE
(
TREE_TYPE
(
exp
))
||
TREE_CODE
(
exp
)
!=
COMPONENT_REF
||
TREE_CODE
(
exp
)
!=
COMPONENT_REF
||
TREE_CODE
(
DECL_SIZE
(
TREE_OPERAND
(
exp
,
1
)))
!=
INTEGER_CST
||
TREE_CODE
(
DECL_SIZE
(
TREE_OPERAND
(
exp
,
1
)))
!=
INTEGER_CST
...
...
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