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
b5a3b737
Commit
b5a3b737
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 tests
From-SVN: r28895
parent
f441f671
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
0 deletions
+49
-0
gcc/testsuite/ChangeLog
+3
-0
gcc/testsuite/g77.f-torture/execute/19990826-0.f
+19
-0
gcc/testsuite/gcc.c-torture/execute/990826-0.c
+27
-0
No files found.
gcc/testsuite/ChangeLog
View file @
b5a3b737
1999-08-26 Craig Burley <craig@jcb-sc.com>
1999-08-26 Craig Burley <craig@jcb-sc.com>
* gcc.c-torture/execute/990826-0.c: New test.
* g77.c-torture/execute/19990826-0.f: New test.
* g77.f-torture/noncompile/970626-2.f: New test.
* g77.f-torture/noncompile/970626-2.f: New test.
1999-08-25 Paul Burchard <burchard@pobox.com>
1999-08-25 Paul Burchard <burchard@pobox.com>
...
...
gcc/testsuite/g77.f-torture/execute/19990826-0.f
0 → 100644
View file @
b5a3b737
* From: niles@fan745.gsfc.nasa.gov
* To: fortran@gnu.org
* Cc: niles@fan745.gsfc.nasa.gov
* Subject: problem with DNINT() on Linux/Alpha.
* Date: Sun, 06 Jun 1999 16:39:35 -0400
* X-UIDL: 6aa9208d7bda8b6182a095dfd37016b7
IF (DNINT(0.0D0) .NE. 0.) CALL ABORT
STOP
END
* Result on Linux/i386: " 0." (and every other computer!)
* Result on Linux/alpha: " 3.6028797E+16"
* It seems to work fine if I change it to the generic NINT(). Probably
* a name pollution problem in the new C library, but it seems bad. no?
* Thanks,
* Rick Niles.
gcc/testsuite/gcc.c-torture/execute/990826-0.c
0 → 100644
View file @
b5a3b737
/*
From: niles@fan745.gsfc.nasa.gov
To: fortran@gnu.org
Subject: Re: Scary problems in g77 for RedHat 6.0. (glibc-2.1)
Date: Sun, 06 Jun 1999 23:37:23 -0400
X-UIDL: 9c1e40c572e3b306464f703461764cd5
*/
#include <stdio.h>
#include <math.h>
int
main
()
{
if
(
floor
(
0
.
1
)
!=
0
.)
abort
();
return
0
;
}
/*
It will result in 36028797018963968.000000 on Alpha RedHat Linux 6.0
using glibc-2.1 at least on my 21064. This may result in g77 bug
reports concerning the INT() function, just so you know.
Thanks,
Rick Niles.
*/
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