diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index b7eec3342f4f..a02586f1758a 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,11 @@ +2005-10-12 Paul Thomas + + PR fortran/20847 + PR fortran/20856 + * symbol.c (check_conflict): Prevent common variables and + function results from having the SAVE attribute,as required + by the standard. + 2005-10-12 Paul Thomas PR fortran/24207 diff --git a/gcc/fortran/symbol.c b/gcc/fortran/symbol.c index aceac5b7423e..98ce66fef98d 100644 --- a/gcc/fortran/symbol.c +++ b/gcc/fortran/symbol.c @@ -322,6 +322,9 @@ check_conflict (symbol_attribute * attr, const char * name, locus * where) conf (in_common, dummy); conf (in_common, allocatable); conf (in_common, result); + conf (in_common, save); + conf (result, save); + conf (dummy, result); conf (in_equivalence, use_assoc); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9c14e0d2173a..366ef0a073ef 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,11 @@ +2005-10-12 Paul Thomas + + PR fortran/20847 + gfortran.dg/save_common.f90: New test. + + PR fortran/20856 + gfortran.dg/save_result.f90: New test. + 2005-10-12 Nathan Sidwell PR c++/21592 diff --git a/gcc/testsuite/gfortran.dg/save_common.f90 b/gcc/testsuite/gfortran.dg/save_common.f90 new file mode 100644 index 000000000000..df4c84f9a265 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/save_common.f90 @@ -0,0 +1,6 @@ +! { dg-do compile } +! PR20847 - A common variable may not have the SAVE attribute. +! Contributed by Joost VandeVondele +INTEGER, SAVE :: X +COMMON /COM/ X ! { dg-error "conflicts with SAVE attribute" } +END \ No newline at end of file diff --git a/gcc/testsuite/gfortran.dg/save_result.f90 b/gcc/testsuite/gfortran.dg/save_result.f90 new file mode 100644 index 000000000000..9e295ec1ca46 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/save_result.f90 @@ -0,0 +1,8 @@ +! { dg-do compile } +! PR20856 - A function result may not have SAVE attribute. +! Contributed by Joost VandeVondele +FUNCTION X() RESULT(Y) +REAL, SAVE :: Y ! { dg-error "RESULT attribute conflicts with SAVE" } +y = 1 +END FUNCTION X +END \ No newline at end of file