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
c8507ba0
Commit
c8507ba0
authored
Oct 16, 1996
by
Mike Stump
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* exlsi.h (CHECK_FLOAT_VALUE): Removed.
From-SVN: r12970
parent
600139d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
21 deletions
+0
-21
gcc/config/elxsi/elxsi.h
+0
-21
No files found.
gcc/config/elxsi/elxsi.h
View file @
c8507ba0
...
...
@@ -689,27 +689,6 @@ enum reg_class { NO_REGS, GENERAL_REGS, ALL_REGS, LIM_REG_CLASSES };
/* #define UDIVSI3_LIBCALL "*udiv" */
/* #define UMODSI3_LIBCALL "*urem" */
/* Check a `double' value for validity for a particular machine mode. */
/* Note that it is very hard to accidentally create a number that fits in a
double but not in a float, since their ranges are almost the same. */
#define CHECK_FLOAT_VALUE(mode, d) \
if ((mode) == SFmode) \
{ \
if ((d) > 1.7014117331926443e+38) \
{ error ("magnitude of constant too large for `float'"); \
(d) = 1.7014117331926443e+38; } \
else if ((d) < -1.7014117331926443e+38) \
{ error ("magnitude of constant too large for `float'"); \
(d) = -1.7014117331926443e+38; } \
else if (((d) > 0) && ((d) < 2.9387358770557188e-39)) \
{ warning ("`float' constant truncated to zero"); \
(d) = 0.0; } \
else if (((d) < 0) && ((d) > -2.9387358770557188e-39)) \
{ warning ("`float' constant truncated to zero"); \
(d) = 0.0; } \
}
/* Tell final.c how to eliminate redundant test instructions. */
...
...
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