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
22469409
Commit
22469409
authored
Aug 08, 2005
by
Bob Wilson
Committed by
Bob Wilson
Aug 08, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (write_complex_part): Return after handling MEM.
From-SVN: r102878
parent
2d88fcc2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
gcc/ChangeLog
+4
-0
gcc/expr.c
+6
-3
No files found.
gcc/ChangeLog
View file @
22469409
2005-08-08 Bob Wilson <bob.wilson@acm.org>
* expr.c (write_complex_part): Return after handling MEM.
2005-08-08 Josh Conner <jconner@apple.com>
PR rtl-optimization/23241
...
...
gcc/expr.c
View file @
22469409
...
...
@@ -2669,9 +2669,12 @@ write_complex_part (rtx cplx, rtx val, bool imag_p)
adjust_address_nv. Instead of preparing fallback support for an
invalid address, we call adjust_address_nv directly. */
if
(
MEM_P
(
cplx
))
emit_move_insn
(
adjust_address_nv
(
cplx
,
imode
,
imag_p
?
GET_MODE_SIZE
(
imode
)
:
0
),
val
);
{
emit_move_insn
(
adjust_address_nv
(
cplx
,
imode
,
imag_p
?
GET_MODE_SIZE
(
imode
)
:
0
),
val
);
return
;
}
/* If the sub-object is at least word sized, then we know that subregging
will work. This special case is important, since store_bit_field
...
...
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