re PR fortran/18271 (INT is allowed in a specification expression)

PR libfortran/18271
	* gfortran.dg/spec_expr_3.f90: New test.

From-SVN: r113627
This commit is contained in:
Francois-Xavier Coudert 2006-05-08 11:59:09 +02:00 committed by François-Xavier Coudert
parent b81bd6c9a2
commit 2813414c11
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-05-07 Francois-Xavier Coudert <coudert@clipper.ens.fr>
PR libfortran/18271
* gfortran.dg/spec_expr_3.f90: New test.
2006-05-07 H.J. Lu <hongjiu.lu@intel.com>
PR target/24879

View File

@ -0,0 +1,7 @@
! { dg-do compile }
! PR fortran/18271
subroutine sub(imax)
implicit none
integer, intent(in) :: imax
real :: aux1(25000+int(0.82*imax))
end subroutine