public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/23552] FAIL: gfortran.dg/large_real_kind_1.f90
       [not found] <bug-23552-276@http.gcc.gnu.org/bugzilla/>
@ 2006-01-26 18:56 ` sje at cup dot hp dot com
  2006-01-28 20:59 ` pinskia at gcc dot gnu dot org
  1 sibling, 0 replies; 5+ messages in thread
From: sje at cup dot hp dot com @ 2006-01-26 18:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from sje at cup dot hp dot com  2006-01-26 18:55 -------
These tests pass for me on the 4.1 branch and on mainline.


-- 

sje at cup dot hp dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23552


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug target/23552] FAIL: gfortran.dg/large_real_kind_1.f90
       [not found] <bug-23552-276@http.gcc.gnu.org/bugzilla/>
  2006-01-26 18:56 ` [Bug target/23552] FAIL: gfortran.dg/large_real_kind_1.f90 sje at cup dot hp dot com
@ 2006-01-28 20:59 ` pinskia at gcc dot gnu dot org
  1 sibling, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-01-28 20:59 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.1.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23552


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug target/23552] FAIL: gfortran.dg/large_real_kind_1.f90
  2005-08-24 23:01 [Bug fortran/23552] New: " danglin at gcc dot gnu dot org
  2005-08-24 23:11 ` [Bug target/23552] " pinskia at gcc dot gnu dot org
  2005-09-12 18:32 ` sje at cup dot hp dot com
@ 2005-09-27 21:13 ` cvs-commit at gcc dot gnu dot org
  2 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-09-27 21:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-09-27 21:13 -------
Subject: Bug 23552

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	sje@gcc.gnu.org	2005-09-27 21:12:52

Modified files:
	libgfortran    : ChangeLog acinclude.m4 configure.ac configure 
	                 config.h.in libgfortran.h 
	libgfortran/io : write.c 
	libgfortran/intrinsics: c99_functions.c 

Log message:
	PR target/23552
	* acinclude.m4 (LIBGFOR_CHECK_FOR_BROKEN_ISFINITE): New.
	(LIBGFOR_CHECK_FOR_BROKEN_ISNAN): New.
	(LIBGFOR_CHECK_FOR_BROKEN_FPCLASSIFY): New.
	* configure.ac (LIBGFOR_CHECK_FOR_BROKEN_ISFINITE): Add use.
	(LIBGFOR_CHECK_FOR_BROKEN_ISNAN): Add use.
	(LIBGFOR_CHECK_FOR_BROKEN_FPCLASSIFY): Add use.
	* configure: Regenerate.
	* config.h.in: Regenerate.
	* libgfortan.h (isfinite): undef if broken, set if needed.
	(isnan): undef if broken, set if needed.
	(fpclassify): undef if broken, set if needed.
	* io/write.c: Remove TODO comment about working isfinite.
	* intrinsics/c99_functions.c (round): Use isfinite instead
	of fpclassify.
	* intrinsics/c99_functions.c (roundf): Ditto.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/ChangeLog.diff?cvsroot=gcc&r1=1.311&r2=1.312
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/acinclude.m4.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/configure.ac.diff?cvsroot=gcc&r1=1.35&r2=1.36
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/configure.diff?cvsroot=gcc&r1=1.45&r2=1.46
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/config.h.in.diff?cvsroot=gcc&r1=1.26&r2=1.27
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/libgfortran.h.diff?cvsroot=gcc&r1=1.33&r2=1.34
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/io/write.c.diff?cvsroot=gcc&r1=1.48&r2=1.49
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/intrinsics/c99_functions.c.diff?cvsroot=gcc&r1=1.15&r2=1.16



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23552


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug target/23552] FAIL: gfortran.dg/large_real_kind_1.f90
  2005-08-24 23:01 [Bug fortran/23552] New: " danglin at gcc dot gnu dot org
  2005-08-24 23:11 ` [Bug target/23552] " pinskia at gcc dot gnu dot org
@ 2005-09-12 18:32 ` sje at cup dot hp dot com
  2005-09-27 21:13 ` cvs-commit at gcc dot gnu dot org
  2 siblings, 0 replies; 5+ messages in thread
From: sje at cup dot hp dot com @ 2005-09-12 18:32 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From sje at cup dot hp dot com  2005-09-12 18:31 -------
This failure is due to the fact that isfinite() does not work for 'long double'
types on HP-UX 11.00.  isfinite() is used when writing floating point values in
the Fortran IO library.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sje at cup dot hp dot com
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-09-12 18:31:21
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23552


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug target/23552] FAIL: gfortran.dg/large_real_kind_1.f90
  2005-08-24 23:01 [Bug fortran/23552] New: " danglin at gcc dot gnu dot org
@ 2005-08-24 23:11 ` pinskia at gcc dot gnu dot org
  2005-09-12 18:32 ` sje at cup dot hp dot com
  2005-09-27 21:13 ` cvs-commit at gcc dot gnu dot org
  2 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-08-24 23:11 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|fortran                     |target


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23552


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-01-28 20:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-23552-276@http.gcc.gnu.org/bugzilla/>
2006-01-26 18:56 ` [Bug target/23552] FAIL: gfortran.dg/large_real_kind_1.f90 sje at cup dot hp dot com
2006-01-28 20:59 ` pinskia at gcc dot gnu dot org
2005-08-24 23:01 [Bug fortran/23552] New: " danglin at gcc dot gnu dot org
2005-08-24 23:11 ` [Bug target/23552] " pinskia at gcc dot gnu dot org
2005-09-12 18:32 ` sje at cup dot hp dot com
2005-09-27 21:13 ` cvs-commit at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).