re PR fortran/15750 (IOLENGTH form of INQUIRE statement not implemented)

PR fortran/15750
* gfortran.fortran-torture/execute/iolength_2.f90: New test.

From-SVN: r87752
This commit is contained in:
Tobias Schlüter 2004-09-20 13:09:47 +02:00 committed by Tobias Schlüter
parent 796ef2e2d5
commit b898b8d923
2 changed files with 29 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-09-20 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
PR fortran/15750
* gfortran.fortran-torture/execute/iolength_2.f90: New test.
2004-09-20 Ira Rosen <irar@il.ibm.com>
* gcc.dg/vect/vect-13.c: Added xfail for non ppc platforms.

View File

@ -0,0 +1,24 @@
! Test that IOLENGTH works for derived types containing arrays
module iolength_2_mod
integer, parameter :: &
! 32 bit, i.e. 4 byte integer (every gcc architecture should have this?)
int32 = selected_int_kind(9), &
! IEEE double precision, i.e. 8 bytes
dp = selected_real_kind(15, 307)
type foo
! This type should take up 5*4+4+8=32 bytes
integer(int32) :: a(5), b
real(dp) :: c
end type foo
end module iolength_2_mod
program iolength_2
use iolength_2_mod
implicit none
integer :: iol
type(foo) :: d
inquire (iolength = iol) d
if ( 32 /= iol) then
call abort
end if
end program iolength_2