diff options
author | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-12 19:41:11 +0000 |
---|---|---|
committer | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-12 19:41:11 +0000 |
commit | 0a32260cf66ad59c6cafa1a1504d90ae182160df (patch) | |
tree | cad0bd5af02da231b9b48aba25c72bbc337b5301 /gcc/testsuite | |
parent | f8dda2a530558b2e4c1b8c71aa4ed78dd38da577 (diff) | |
download | gcc-0a32260cf66ad59c6cafa1a1504d90ae182160df.tar.gz |
2013-12-12 Tobias Burnus <burnus@net-b.de>
PR fortran/59440
* trans-decl.c (generate_namelist_decl): Ensure debug DIE
is created by setting DECL_IGNORED_P to 0.
2013-12-12 Tobias Burnus <burnus@net-b.de>
PR fortran/59440
* gfortran.dg/namelist_83.f90: New.
* gfortran.dg/namelist_83_2.f90: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205939 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/namelist_83.f90 | 22 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/namelist_83_2.f90 | 22 |
3 files changed, 50 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d8e75467d8c..e011b5eee09 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2013-12-12 Tobias Burnus <burnus@net-b.de> + + PR fortran/59440 + * gfortran.dg/namelist_83.f90: New. + * gfortran.dg/namelist_83_2.f90: New. + 2013-12-12 Jakub Jelinek <jakub@redhat.com> PR middle-end/59470 diff --git a/gcc/testsuite/gfortran.dg/namelist_83.f90 b/gcc/testsuite/gfortran.dg/namelist_83.f90 new file mode 100644 index 00000000000..f87d4cdf61b --- /dev/null +++ b/gcc/testsuite/gfortran.dg/namelist_83.f90 @@ -0,0 +1,22 @@ +! { dg-do link } +! { dg-options "-g" } +! { dg-additional-sources namelist_83_2.f90 } +! +! Note: compilation would be sufficient, but "compile" cannot be combined +! with dg-additional-sources. +! +! PR fortran/59440 +! +! Contributed by Harald Anlauf +! +! Was ICEing during DWARF generation. +! +! This is the first file - dg-additional-sources contains the second one +! + +module mo_t_datum + implicit none + integer :: qbit_conv = 0 +end module mo_t_datum + +! { dg-final { cleanup-modules "gfcbug126" } } diff --git a/gcc/testsuite/gfortran.dg/namelist_83_2.f90 b/gcc/testsuite/gfortran.dg/namelist_83_2.f90 new file mode 100644 index 00000000000..0a0ca6ed34d --- /dev/null +++ b/gcc/testsuite/gfortran.dg/namelist_83_2.f90 @@ -0,0 +1,22 @@ +! { dg-do compile { target { ! *-*-* } } } +! +! To be compiled with "-g" via namelist_83.f90 +! +! PR fortran/59440 +! +! Contributed by Harald Anlauf +! +! Was ICEing during DWARF generation. +! +! This is the second file, the module is in namelist_83.f90 +! + +! +MODULE gfcbug126 + use mo_t_datum, only: qbit_conv + implicit none + namelist /OBSERVATIONS/ qbit_conv +end module gfcbug126 + +! As we have to link, add an empty main program: +end |