re PR fortran/37930 (gfortran error and ICE at automatic type conversion with transfer intrinsic)

2008-10-30  Steven G. Kargl  <kargls@comcast.net>

	PR fortran/37930
	* gfortran.dg/int_conv_2.f90:  New test.

From-SVN: r141489
This commit is contained in:
Steven G. Kargl 2008-10-31 04:51:04 +00:00 committed by Jerry DeLisle
parent 7278e4dcfb
commit dc4a37ec55
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,10 @@
<<<<<<< .mine
2008-10-30 Steven G. Kargl <kargls@comcast.net>
PR fortran/37930
* gfortran.dg/int_conv_2.f90: New test.
=======
2008-10-30 Mikael Morin <mikael.morin@tele2.fr>
PR fortran/37903
@ -8,6 +15,7 @@
PR fortran/37749
* gfortran.dg/vector_subscript__5.f90: New test.
>>>>>>> .r141488
2008-10-30 Jakub Jelinek <jakub@redhat.com>
* gcc.target/s390/pr36822.c: Avoid cast to pointer from integer

View File

@ -0,0 +1,7 @@
! { dg-do compile }
! PR fortran/37930
program test
implicit none
integer i
i = transfer(-1,1.0) ! { dg-error "Conversion" }
end program test