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
63a33c94
Commit
63a33c94
authored
Mar 10, 1995
by
Doug Evans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* m68k/fpgnulib.c (__fixdfsi): Catch values < 0.5 in magnitude.
From-SVN: r9157
parent
0323c178
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/config/m68k/fpgnulib.c
+5
-2
No files found.
gcc/config/m68k/fpgnulib.c
View file @
63a33c94
...
...
@@ -243,8 +243,11 @@ __fixdfsi (double a1)
return
SIGND
(
dl1
)
?
0x80000000
:
0x7fffffff
;
}
/* shift down until exp = 0 or l = 0 */
if
(
exp
<
0
&&
exp
>
-
32
&&
l
)
if
(
exp
<=
-
32
)
return
0
;
/* shift down until exp = 0 */
if
(
exp
<
0
)
l
>>=
-
exp
;
return
(
SIGND
(
dl1
)
?
-
l
:
l
);
...
...
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