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
3d709fd3
Commit
3d709fd3
authored
23 years ago
by
Richard Henderson
Committed by
Richard Henderson
23 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (move_by_pieces_1): Extend size before negation.
From-SVN: r49158
parent
152d4916
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+4
-0
gcc/expr.c
+4
-2
No files found.
gcc/ChangeLog
View file @
3d709fd3
2002-01-23 Richard Henderson <rth@redhat.com>
* expr.c (move_by_pieces_1): Extend size before negation.
2002-01-23 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/elf.h: New file.
...
...
This diff is collapsed.
Click to expand it.
gcc/expr.c
View file @
3d709fd3
...
...
@@ -1575,9 +1575,11 @@ move_by_pieces_1 (genfun, mode, data)
from1
=
adjust_address
(
data
->
from
,
mode
,
data
->
offset
);
if
(
HAVE_PRE_DECREMENT
&&
data
->
explicit_inc_to
<
0
)
emit_insn
(
gen_add2_insn
(
data
->
to_addr
,
GEN_INT
(
-
size
)));
emit_insn
(
gen_add2_insn
(
data
->
to_addr
,
GEN_INT
(
-
(
HOST_WIDE_INT
)
size
)));
if
(
HAVE_PRE_DECREMENT
&&
data
->
explicit_inc_from
<
0
)
emit_insn
(
gen_add2_insn
(
data
->
from_addr
,
GEN_INT
(
-
size
)));
emit_insn
(
gen_add2_insn
(
data
->
from_addr
,
GEN_INT
(
-
(
HOST_WIDE_INT
)
size
)));
if
(
data
->
to
)
emit_insn
((
*
genfun
)
(
to1
,
from1
));
...
...
This diff is collapsed.
Click to expand it.
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