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
6d9bf074
Commit
6d9bf074
authored
May 09, 1999
by
Craig Burley
Committed by
Craig Burley
May 09, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use small single-precision values, to avoid problem on Alphas when not -mieee
From-SVN: r26851
parent
0e3df013
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/testsuite/ChangeLog
+5
-0
gcc/testsuite/g77.f-torture/execute/erfc.f
+3
-2
No files found.
gcc/testsuite/ChangeLog
View file @
6d9bf074
1999-05-10 Craig Burley <craig@jcb-sc.com>
* g77.f-torture/execute/erfc.f: Use small single-precision
values, to avoid problems on Alphas when not -mieee.
1999-05-08 Craig Burley <craig@jcb-sc.com>
1999-05-08 Craig Burley <craig@jcb-sc.com>
* gcc.dg/990506-0.c: New test.
* gcc.dg/990506-0.c: New test.
...
...
gcc/testsuite/g77.f-torture/execute/erfc.f
View file @
6d9bf074
...
@@ -9,9 +9,10 @@ c============================================== test.f
...
@@ -9,9 +9,10 @@ c============================================== test.f
y = erfc(x)
y = erfc(x)
if (abs(y - .1197949) .ge. 1.e-6) call abort
if (abs(y - .1197949) .ge. 1.e-6) call abort
x=10
* modified from x=10, y .gt. 1.5e-44 to avoid lack of -mieee on Alphas.
x=8
y = erfc(x)
y = erfc(x)
if (y .gt. 1.
5e-44
) call abort
if (y .gt. 1.
2e-28
) call abort
x1=0.
x1=0.
y1 = erfc(x1)
y1 = erfc(x1)
...
...
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