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
dc55be0e
Commit
dc55be0e
authored
Feb 06, 1994
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(function_arg): When soft-float, don't add bias for
second SFmode argument. From-SVN: r6489
parent
704a7f6e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
gcc/config/mips/mips.c
+9
-6
No files found.
gcc/config/mips/mips.c
View file @
dc55be0e
...
...
@@ -2819,13 +2819,16 @@ function_arg (cum, mode, type, named)
switch
(
mode
)
{
case
SFmode
:
if
(
cum
->
gp_reg_found
||
cum
->
arg_number
>=
2
)
if
(
cum
->
gp_reg_found
||
cum
->
arg_number
>=
2
||
TARGET_SOFT_FLOAT
)
regbase
=
GP_ARG_FIRST
;
else
{
regbase
=
(
TARGET_SOFT_FLOAT
)
?
GP_ARG_FIRST
:
FP_ARG_FIRST
;
if
(
cum
->
arg_words
==
1
)
/* first arg was float */
bias
=
1
;
/* use correct reg */
}
else
{
regbase
=
FP_ARG_FIRST
;
/* If the first arg was a float in a floating point register,
then set bias to align this float arg properly. */
if
(
cum
->
arg_words
==
1
)
bias
=
1
;
}
break
;
...
...
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