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
db771a3c
Commit
db771a3c
authored
Feb 02, 1998
by
Hans-Peter Nilsson
Committed by
Jeff Law
Feb 01, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (emit_push_insn): Add code to use movstrti if present.
From-SVN: r17589
parent
7a6df7f9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
gcc/ChangeLog
+2
-0
gcc/expr.c
+12
-0
No files found.
gcc/ChangeLog
View file @
db771a3c
Mon Feb 2 01:22:46 1998 Hans-Peter Nilsson <hp@axis.se>
* expr.c (emit_push_insn): Add code to use movstrti if present.
* expr.c (emit_push_insn): Use same max-move-amount for movstrhi
and movstrqi as in emit_block_move ().
...
...
gcc/expr.c
View file @
db771a3c
...
...
@@ -2651,6 +2651,18 @@ emit_push_insn (x, mode, type, size, align, partial, reg, extra,
}
}
#endif
#ifdef HAVE_movstrti
if
(
HAVE_movstrti
)
{
rtx
pat
=
gen_movstrti
(
gen_rtx
(
MEM
,
BLKmode
,
temp
),
xinner
,
size
,
GEN_INT
(
align
));
if
(
pat
!=
0
)
{
emit_insn
(
pat
);
goto
ret
;
}
}
#endif
#ifndef ACCUMULATE_OUTGOING_ARGS
/* If the source is referenced relative to the stack pointer,
...
...
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