Commit 1b1f56cf by Tobias Burnus Committed by Tobias Burnus

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
parent b91bc349
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.
......
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment