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
c90fb4e6
Commit
c90fb4e6
authored
Jul 07, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(singlemove_string): Convert SFmode by REAL_VALUE... macros.
From-SVN: r4883
parent
d667538b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
gcc/config/sparc/sparc.c
+4
-7
No files found.
gcc/config/sparc/sparc.c
View file @
c90fb4e6
...
...
@@ -946,18 +946,15 @@ singlemove_string (operands)
return
"ld %1,%0"
;
else
if
(
GET_CODE
(
operands
[
1
])
==
CONST_DOUBLE
)
{
int
i
;
union
real_extract
u
;
union
float_extract
{
float
f
;
int
i
;
}
v
;
REAL_VALUE_TYPE
r
;
long
i
;
/* Must be SFmode, otherwise this doesn't make sense. */
if
(
GET_MODE
(
operands
[
1
])
!=
SFmode
)
abort
();
bcopy
(
&
CONST_DOUBLE_LOW
(
operands
[
1
]),
&
u
,
sizeof
u
);
v
.
f
=
REAL_VALUE_TRUNCATE
(
SFmode
,
u
.
d
);
i
=
v
.
i
;
REAL_VALUE_FROM_CONST_DOUBLE
(
r
,
operands
[
1
]);
REAL_VALUE_TO_TARGET_SINGLE
(
r
,
i
);
operands
[
1
]
=
gen_rtx
(
CONST_INT
,
VOIDmode
,
i
);
if
(
CONST_OK_FOR_LETTER_P
(
i
,
'I'
))
...
...
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