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
0e247093
Commit
0e247093
authored
Sep 30, 2010
by
Michael Eager
Committed by
Michael Eager
Sep 30, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace FLOAT_MIN, FLOAT_MAX to __FLT_MIN__, __FLT_MAX__.
From-SVN: r164816
parent
319840d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
10 deletions
+7
-10
gcc/testsuite/ChangeLog
+5
-0
gcc/testsuite/gcc.c-torture/execute/cmpsf-1.c
+2
-10
No files found.
gcc/testsuite/ChangeLog
View file @
0e247093
2010-09-30 Michael Eager <eager@eagercon.com>
* gcc.c-torture/execute/cmpsf-1.c: Rename FLOAT_{MIN,MAX} to
__FLT_{MIN,MAX}__.
2010-09-30 Sebastian Pop <sebastian.pop@amd.com>
PR middle-end/45758
...
...
gcc/testsuite/gcc.c-torture/execute/cmpsf-1.c
View file @
0e247093
...
...
@@ -56,8 +56,8 @@ float args[] =
0
.
0
F
,
1
.
0
F
,
-
1
.
0
F
,
FLOAT_MAX
,
FLOAT_MIN
,
__FLT_MAX__
,
__FLT_MIN__
,
0
.
0000000000001
F
,
123456789
.
0
F
,
-
987654321
.
0
F
...
...
@@ -155,14 +155,6 @@ main (void)
abort
();
if
(
fle
(
arg0
,
arg1
)
!=
*
res
++
)
abort
();
if
(
fltu
(
arg0
,
arg1
)
!=
*
res
++
)
abort
();
if
(
fgeu
(
arg0
,
arg1
)
!=
*
res
++
)
abort
();
if
(
fgtu
(
arg0
,
arg1
)
!=
*
res
++
)
abort
();
if
(
fleu
(
arg0
,
arg1
)
!=
*
res
++
)
abort
();
}
}
exit
(
0
);
...
...
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