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
05795922
Commit
05795922
authored
Mar 07, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r410
parent
eb76eb5a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
gcc/config/i860/i860.c
+5
-9
No files found.
gcc/config/i860/i860.c
View file @
05795922
...
@@ -1614,21 +1614,17 @@ unsigned long
...
@@ -1614,21 +1614,17 @@ unsigned long
sfmode_constant_to_ulong
(
x
)
sfmode_constant_to_ulong
(
x
)
rtx
x
;
rtx
x
;
{
{
union
{
double
d
;
unsigned
long
i
[
2
];
}
u
;
REAL_VALUE_TYPE
d
;
union
{
float
f
;
unsigned
long
i
;
}
u2
;
union
{
float
f
;
unsigned
long
i
;
}
u2
;
if
(
GET_CODE
(
x
)
!=
CONST_DOUBLE
||
GET_MODE
(
x
)
!=
SFmode
)
if
(
GET_CODE
(
x
)
!=
CONST_DOUBLE
||
GET_MODE
(
x
)
!=
SFmode
)
abort
();
abort
();
#ifndef HOST_WORDS_BIG_ENDIAN
#if TARGET_FLOAT_FORMAT != HOST_FLOAT_FORMAT
u
.
i
[
0
]
=
CONST_DOUBLE_LOW
(
x
);
# error IEEE emulation needed
u
.
i
[
1
]
=
CONST_DOUBLE_HIGH
(
x
);
#else
u
.
i
[
0
]
=
CONST_DOUBLE_HIGH
(
x
);
u
.
i
[
1
]
=
CONST_DOUBLE_LOW
(
x
);
#endif
#endif
REAL_VALUE_FROM_CONST_DOUBLE
(
u
.
d
,
x
);
u2
.
f
=
u
.
d
;
u2
.
f
=
d
;
return
u2
.
i
;
return
u2
.
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