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
33a20d10
Commit
33a20d10
authored
Oct 11, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_assignment): When assigning an INDIRECT_REF to a RESULT_DECL,
the size and source rtx were swapped. From-SVN: r5735
parent
28498644
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gcc/expr.c
+2
-2
No files found.
gcc/expr.c
View file @
33a20d10
...
@@ -2451,8 +2451,8 @@ expand_assignment (to, from, want_value, suggest_reg)
...
@@ -2451,8 +2451,8 @@ expand_assignment (to, from, want_value, suggest_reg)
rtx
from_rtx
,
size
;
rtx
from_rtx
,
size
;
push_temp_slots
();
push_temp_slots
();
from_rtx
=
expr_size
(
from
);
size
=
expr_size
(
from
);
size
=
expand_expr
(
from
,
NULL_RTX
,
VOIDmode
,
0
);
from_rtx
=
expand_expr
(
from
,
NULL_RTX
,
VOIDmode
,
0
);
#ifdef TARGET_MEM_FUNCTIONS
#ifdef TARGET_MEM_FUNCTIONS
emit_library_call
(
memcpy_libfunc
,
0
,
emit_library_call
(
memcpy_libfunc
,
0
,
...
...
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