diff options
author | Victor Leikehman <lei@haifasphere.co.il> | 2004-05-15 01:52:04 +0300 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2004-05-14 22:52:04 +0000 |
commit | cb44ab824bd0902002bbf1caa66c05b56829630c (patch) | |
tree | 939f71ae9665cb55420bcc4ffa9d70f3850da94c /gcc | |
parent | 15f8ac7f0878178cca61636f81323629624e4585 (diff) | |
download | gcc-cb44ab824bd0902002bbf1caa66c05b56829630c.zip gcc-cb44ab824bd0902002bbf1caa66c05b56829630c.tar.gz gcc-cb44ab824bd0902002bbf1caa66c05b56829630c.tar.bz2 |
decl.c (variable_decl): Always apply default initializer.
fortran/
* decl.c (variable_decl): Always apply default initializer.
libgfortran/
* gfortran.fortran-torture/execute/def_init_3.f90: New test.
From-SVN: r81865
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fortran/decl.c | 9 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.fortran-torture/execute/der_init_3.f90 | 12 |
4 files changed, 25 insertions, 4 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 605a572..19a66ce 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2004-05-14 Victor Leikehman <lei@haifasphere.co.il> + + * decl.c (variable_decl): Always apply default initializer. + 2004-05-08 Tobias Schlüter <tobias.schlueter@physik.uni-muenchen.de> PR fortran/15206 diff --git a/gcc/fortran/decl.c b/gcc/fortran/decl.c index 9d6bf94..2aed9b2 100644 --- a/gcc/fortran/decl.c +++ b/gcc/fortran/decl.c @@ -619,10 +619,11 @@ variable_decl (void) if (m != MATCH_YES) goto cleanup; } - else if (current_ts.type == BT_DERIVED) - { - initializer = default_initializer (); - } + } + + if (current_ts.type == BT_DERIVED && !initializer) + { + initializer = default_initializer (); } /* Add the initializer. Note that it is fine if &initializer is diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 77a80ba..7e14671 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-05-14 Victor Leikehman <lei@haifasphere.co.il> + + * gfortran.fortran-torture/execute/def_init_3.f90: New test. + 2004-05-14 Jeff Law <law@redhat.com> * gcc.dg/tree-ssa/20040514-2.c: New test. diff --git a/gcc/testsuite/gfortran.fortran-torture/execute/der_init_3.f90 b/gcc/testsuite/gfortran.fortran-torture/execute/der_init_3.f90 new file mode 100644 index 0000000..16f203a --- /dev/null +++ b/gcc/testsuite/gfortran.fortran-torture/execute/der_init_3.f90 @@ -0,0 +1,12 @@ +! PR15365 +! Default initializers were being missed +program main + type xyz + integer :: x = 123 + end + + type (xyz) :: a !! ok + type (xyz) b !!! not initialized !!! + if (a%x.ne.123) call abort + if (b%x.ne.123) call abort +end |