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
e33c0d66
Commit
e33c0d66
authored
Nov 06, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(emit_move_insn_1): Push the components of a complex
in proper order: imag part has higher address. From-SVN: r6024
parent
82020a12
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 @
e33c0d66
...
...
@@ -1802,20 +1802,22 @@ emit_move_insn_1 (x, y)
the mode, not to change the address. */
if
(
stack
)
{
/* Note that the real part always precedes the imag part in memory
regardless of machine's endianness. */
#ifdef STACK_GROWS_DOWNWARD
emit_insn
(
GEN_FCN
(
mov_optab
->
handlers
[(
int
)
submode
].
insn_code
)
(
gen_rtx
(
MEM
,
submode
,
(
XEXP
(
x
,
0
))),
gen_
high
part
(
submode
,
y
)));
gen_
imag
part
(
submode
,
y
)));
emit_insn
(
GEN_FCN
(
mov_optab
->
handlers
[(
int
)
submode
].
insn_code
)
(
gen_rtx
(
MEM
,
submode
,
(
XEXP
(
x
,
0
))),
gen_
low
part
(
submode
,
y
)));
gen_
real
part
(
submode
,
y
)));
#else
emit_insn
(
GEN_FCN
(
mov_optab
->
handlers
[(
int
)
submode
].
insn_code
)
(
gen_rtx
(
MEM
,
submode
,
(
XEXP
(
x
,
0
))),
gen_
low
part
(
submode
,
y
)));
gen_
real
part
(
submode
,
y
)));
emit_insn
(
GEN_FCN
(
mov_optab
->
handlers
[(
int
)
submode
].
insn_code
)
(
gen_rtx
(
MEM
,
submode
,
(
XEXP
(
x
,
0
))),
gen_
high
part
(
submode
,
y
)));
gen_
imag
part
(
submode
,
y
)));
#endif
}
else
...
...
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