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
c363a0c4
Commit
c363a0c4
authored
Aug 26, 1999
by
Craig Burley
Committed by
Craig Burley
Aug 26, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New test
From-SVN: r28899
parent
9dae6a7f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
0 deletions
+35
-0
gcc/testsuite/ChangeLog
+2
-0
gcc/testsuite/g77.f-torture/execute/19990826-2.f
+33
-0
No files found.
gcc/testsuite/ChangeLog
View file @
c363a0c4
1999-08-26 Craig Burley <craig@jcb-sc.com>
1999-08-26 Craig Burley <craig@jcb-sc.com>
* g77.f-torture/execute/19990826-2.f: New test.
* g77.f-torture/compile/19990826-1.f: New test.
* g77.f-torture/compile/19990826-1.f: New test.
* gcc.c-torture/execute/990826-0.c: New test.
* gcc.c-torture/execute/990826-0.c: New test.
...
...
gcc/testsuite/g77.f-torture/execute/19990826-2.f
0 → 100644
View file @
c363a0c4
* From: "Billinghurst, David (RTD)" <David.Billinghurst@riotinto.com.au>
* Subject: RE: single precision complex bug in g77 - was Testing g77 with LA
* PACK 3.0
* Date: Thu, 8 Jul 1999 00:55:11 +0100
* X-UIDL: b00d9d8081a36fef561b827d255dd4a5
* Here is a slightly simpler and neater test case
program labug3
implicit none
* This program gives the wrong answer on mips-sgi-irix6.5
* when compiled with g77 from egcs-19990629 (gcc 2.95 prerelease)
* Get a = 0.0 when it should be 1.0
*
* Works with: -femulate-complex
* egcs-1.1.2
*
* Originally derived from LAPACK 3.0 test suite.
*
* David Billinghurst, (David.Billinghurst@riotinto.com.au)
* 8 July 1999
*
complex one, z
real a, f1
f1(z) = real(z)
one = (1.,0.)
a = f1(one)
if ( abs(a-1.0) .gt. 1.0e-5 ) then
write(6,*) 'A should be 1.0 but it is',a
call abort()
end if
end
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