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
ad241351
Commit
ad241351
authored
Jun 15, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(assign_parms): Do all conversions in CONVERSION_INSNS.
From-SVN: r9992
parent
8a0c27ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
gcc/function.c
+2
-1
No files found.
gcc/function.c
View file @
ad241351
...
...
@@ -3631,9 +3631,10 @@ assign_parms (fndecl, second_time)
rtx
tempreg
=
gen_reg_rtx
(
GET_MODE
(
entry_parm
));
emit_move_insn
(
tempreg
,
validize_mem
(
entry_parm
));
tempreg
=
convert_to_mode
(
nominal_mode
,
tempreg
,
unsignedp
);
push_to_sequence
(
conversion_insns
);
tempreg
=
convert_to_mode
(
nominal_mode
,
tempreg
,
unsignedp
);
expand_assignment
(
parm
,
make_tree
(
nominal_type
,
tempreg
),
0
,
0
);
conversion_insns
=
get_insns
();
...
...
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