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
9151b3bf
Commit
9151b3bf
authored
Dec 22, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(store_constructor): Don't call change_address on REG.
(expand_expr, case CONSTRUCTOR): Likewise. From-SVN: r10836
parent
ff18b63b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
gcc/expr.c
+6
-4
No files found.
gcc/expr.c
View file @
9151b3bf
...
...
@@ -3082,8 +3082,9 @@ store_constructor (exp, target)
if
(
TREE_READONLY
(
field
))
{
to_rtx
=
change_address
(
to_rtx
,
GET_MODE
(
to_rtx
),
XEXP
(
to_rtx
,
0
));
if
(
GET_CODE
(
to_rtx
)
==
MEM
)
to_rtx
=
change_address
(
to_rtx
,
GET_MODE
(
to_rtx
),
XEXP
(
to_rtx
,
0
));
RTX_UNCHANGING_P
(
to_rtx
)
=
1
;
}
...
...
@@ -4553,8 +4554,9 @@ expand_expr (exp, target, tmode, modifier)
if
(
TREE_READONLY
(
exp
))
{
target
=
change_address
(
target
,
GET_MODE
(
target
),
XEXP
(
target
,
0
));
if
(
GET_CODE
(
target
)
==
MEM
)
target
=
change_address
(
target
,
GET_MODE
(
target
),
XEXP
(
target
,
0
));
RTX_UNCHANGING_P
(
target
)
=
1
;
}
...
...
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