re PR fortran/37399 (gfortran.dg/size_kind.f90 doesn't work)

2008-09-06  Tobias Burnus  <burnus@net-b.de>

       PR fortran/37399
       * gfortran.dg/size_kind.f90: Remove allocate statement
       as it overflows at compile time on 32bit systems.

From-SVN: r140070
This commit is contained in:
Tobias Burnus 2008-09-06 20:27:17 +02:00 committed by Tobias Burnus
parent b91bc3493e
commit 1b1f56cf4d
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-09-06 Tobias Burnus <burnus@net-b.de>
PR fortran/37399
* gfortran.dg/size_kind.f90: Remove allocate statement
as it overflows at compile time on 32bit systems.
2008-09-06 Jan Hubicka <jh@suse.cz>
* g++.dg/tree-ssa-pr14703.C: New testcase.

View file

@ -19,7 +19,9 @@ program test_64
print *, "max_32 = ", max_32
print *, "big_sz = ", big_sz
allocate(array(big_sz))
! Disabled as it overflows on 32bit systems (at compile time)
! (conversion of integer(8) to integer(4))
! allocate(array(big_sz))
print *, "sz = ", size(array)
print *, "sz = ", size(array, kind=long)
end program