Re: [Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-08 Thread Steve Kargl
On Tue, Nov 08, 2011 at 07:35:40PM +0100, Dominique Dhumieres wrote: > I have a few questions: > > (1) Is sqrtl the only missing Fortran intrinsic? > (2) Is there a list of missing intrinsics and platforms? This is definitely platform dependent. For amd64-*freebsd, troutmask:sgk[210] gmake che

Re: [Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-08 Thread Dominique Dhumieres
I have a few questions: (1) Is sqrtl the only missing Fortran intrinsic? (2) Is there a list of missing intrinsics and platforms? (3) Does it make any sense to support REAL(10) if sqrtl is missing? Cheers, Dominique

Re: [Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-08 Thread Tobias Burnus
On 11/08/2011 05:10 PM, Janne Blomqvist wrote: On Tue, Nov 8, 2011 at 17:41, Rainer Orth wrote: Steve Kargl writes: Please no: sqrtl is a C99 addition, and we don't want lists of non-C99 targets in tests that require them. OK, so, then we simply accept that running a regression test on the

Re: [Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-08 Thread Steve Kargl
On Tue, Nov 08, 2011 at 04:41:32PM +0100, Rainer Orth wrote: > Steve Kargl writes: > > >> Please no: sqrtl is a C99 addition, and we don't want lists of non-C99 > >> targets in tests that require them. > >> > > > > OK, so, then we simply accept that running a regression test > > on these targets

Re: [Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-08 Thread Janne Blomqvist
On Tue, Nov 8, 2011 at 17:41, Rainer Orth wrote: > Steve Kargl writes: > >>> Please no: sqrtl is a C99 addition, and we don't want lists of non-C99 >>> targets in tests that require them. >>> >> >> OK, so, then we simply accept that running a regression test >> on these targets will always FAIL?

Re: [Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-08 Thread Rainer Orth
Steve Kargl writes: >> Please no: sqrtl is a C99 addition, and we don't want lists of non-C99 >> targets in tests that require them. >> > > OK, so, then we simply accept that running a regression test > on these targets will always FAIL? If the answer is 'yes', > then please close this PR becau

Re: [Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-08 Thread Steve Kargl
On Tue, Nov 08, 2011 at 11:14:52AM +0100, Rainer Orth wrote: > Steve Kargl writes: > > > On Mon, Nov 07, 2011 at 09:55:48PM +0100, Eric Botcazou wrote: > >> > The test uses the largest available floating-point number - be it 8, 10 > >> > or 16 - and tests for that. The checks should be thus OK fo

Re: [Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-08 Thread Rainer Orth
Steve Kargl writes: > On Mon, Nov 07, 2011 at 09:55:48PM +0100, Eric Botcazou wrote: >> > The test uses the largest available floating-point number - be it 8, 10 >> > or 16 - and tests for that. The checks should be thus OK for any system. >> >> It fails with a link failure on SPARC Solaris 8 an

Re: [Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-07 Thread Steve Kargl
On Mon, Nov 07, 2011 at 09:55:48PM +0100, Eric Botcazou wrote: > > The test uses the largest available floating-point number - be it 8, 10 > > or 16 - and tests for that. The checks should be thus OK for any system. > > It fails with a link failure on SPARC Solaris 8 and 9: > > FAIL: gfortran.dg/

Re: [Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-07 Thread Eric Botcazou
> The test uses the largest available floating-point number - be it 8, 10 > or 16 - and tests for that. The checks should be thus OK for any system. It fails with a link failure on SPARC Solaris 8 and 9: FAIL: gfortran.dg/quad_2.f90 -O0 (test for excess errors) Excess errors: Undefined

[Patch, Fortran, committed] Add libquadmath testcase gfortran.dg/quad_2.f90

2011-11-05 Thread Tobias Burnus
Motivated by the report at http://groups.google.com/group/comp.lang.fortran/browse_thread/thread/6373a2dfe64f0b83 There is currently no run-test check that libquadmath actually works. The attached and committed (Rev. 181015) adds one which tests for libquadmath that I/O read/write works. Addi