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
725e58b1
Commit
725e58b1
authored
Feb 16, 2002
by
Richard Kenner
Committed by
Richard Kenner
Feb 16, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (store_constructor): Handle target REG case for ARRAY_TYPE.
From-SVN: r49805
parent
7f311f63
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/ChangeLog
+4
-0
gcc/expr.c
+6
-1
No files found.
gcc/ChangeLog
View file @
725e58b1
Sat Feb 16 13:39:09 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* expr.c (store_constructor): Handle target REG case for ARRAY_TYPE.
2002-02-16 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (pool_stop_uid, other_chunk, far_away,
...
...
gcc/expr.c
View file @
725e58b1
...
...
@@ -4617,7 +4617,12 @@ store_constructor (exp, target, cleared, size)
if
(
need_to_clear
&&
size
>
0
)
{
if
(
!
cleared
)
clear_storage
(
target
,
GEN_INT
(
size
));
{
if
(
REG_P
(
target
))
emit_move_insn
(
target
,
CONST0_RTX
(
GET_MODE
(
target
)));
else
clear_storage
(
target
,
GEN_INT
(
size
));
}
cleared
=
1
;
}
else
if
(
REG_P
(
target
))
...
...
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