re PR fortran/32361 (TYPE DECLARATION TO INITIALIZE DATA IN NAMED COMMON)

2007-06-20  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR fortran/32361
	gfortran.dg/pointer_assign_2.f90: New test.

From-SVN: r125909
This commit is contained in:
Jerry DeLisle 2007-06-21 02:25:58 +00:00
parent b141ff67de
commit f2c9a6df65
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-06-20 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/32361
gfortran.dg/pointer_assign_2.f90: New test.
2007-06-20 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/25061

View File

@ -0,0 +1,6 @@
! { dg-do compile }
! PR32361 Type declaration to initialize data in named common
BLOCK DATA
integer, pointer :: ptr1 => NULL()
common / T / ptr1
END