[multiple changes]
authorDominique d'Humieres <dominiq@gcc.gnu.org>
Sat, 19 Jan 2019 21:45:43 +0000 (22:45 +0100)
committerDominique d'Humieres <dominiq@gcc.gnu.org>
Sat, 19 Jan 2019 21:45:43 +0000 (22:45 +0100)
2019-01-19  Dominique d'Humieres  <dominiq@gcc.gnu.org>

PR fortran/37835
* resolve.c (resolve_types): Add !flag_automatic.
* symbol.c (gfc_add_save): Silence warnings.

2019-01-18  Dominique d'Humieres  <dominiq@gcc.gnu.org>

PR fortran/37835
* gfortran.dg/no-automatic.f90: New test.

From-SVN: r268098

gcc/fortran/ChangeLog
gcc/fortran/invoke.texi
gcc/fortran/resolve.c
gcc/fortran/symbol.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/no-automatic.f90 [new file with mode: 0644]

index 6c95a879b24cdf303e32c67d08f9f9ff0b02ec92..a6d793c8b66d4c568e60f5c4abfea150d965c0e8 100644 (file)
@@ -1,3 +1,9 @@
+2019-01-19  Dominique d'Humieres  <dominiq@gcc.gnu.org>
+
+       PR fortran/37835
+       * resolve.c (resolve_types): Add !flag_automatic.
+       * symbol.c (gfc_add_save): Silence warnings.
+
 2019-01-19  Steven G. Kargl  <kargl@gcc.gnu.org>
 
        PR fortran/77960
index 668e8d9bc7295959b7bc518958c047a06af89042..dc7c037f2410a78358a8e93292fee7d97f474d5f 100644 (file)
@@ -1377,6 +1377,9 @@ The default, which is @option{-fautomatic}, uses the stack for local
 variables smaller than the value given by @option{-fmax-stack-var-size}.
 Use the option @option{-frecursive} to use no static memory. 
 
+Local variables or arrays having an explicit @code{SAVE} attribute are
+silently ignored unless the @option{-pedantic} option is added.
+
 @item -ff2c
 @opindex ff2c
 @cindex calling convention
index 3f893f1f802f4a5d85e3dd1eb1de534f1ca843ae..2c49aeab5f9822be16fa7cd9f4dc1becb1eb4c01 100644 (file)
@@ -16673,7 +16673,7 @@ resolve_types (gfc_namespace *ns)
 
   gfc_traverse_ns (ns, resolve_values);
 
-  if (ns->save_all)
+  if (ns->save_all || !flag_automatic)
     gfc_save_all (ns);
 
   iter_stack = NULL;
index 06c21d969f2b56eeef8f995cf67ce49a5a7ec87b..b7408ac3f21c1395bc8e7f22d1326f2711a9776e 100644 (file)
@@ -1306,7 +1306,8 @@ gfc_add_save (symbol_attribute *attr, save_state s, const char *name,
   if (s == SAVE_EXPLICIT)
     gfc_unset_implicit_pure (NULL);
 
-  if (s == SAVE_EXPLICIT && attr->save == SAVE_EXPLICIT)
+  if (s == SAVE_EXPLICIT && attr->save == SAVE_EXPLICIT
+      && (flag_automatic || pedantic))
     {
        if (!gfc_notify_std (GFC_STD_LEGACY,
                             "Duplicate SAVE attribute specified at %L",
index f3c66ee318da18410bb48aebe975929e0ea32239..ebd599e78107e5c1a412ff5df58e0c9685115a35 100644 (file)
@@ -1,3 +1,8 @@
+2019-01-18  Dominique d'Humieres  <dominiq@gcc.gnu.org>
+
+       PR fortran/37835
+       * gfortran.dg/no-automatic.f90: New test.
+
 2019-01-19  Steven G. Kargl  <kargl@gcc.gnu.org>
 
        PR fortran/77960
diff --git a/gcc/testsuite/gfortran.dg/no-automatic.f90 b/gcc/testsuite/gfortran.dg/no-automatic.f90
new file mode 100644 (file)
index 0000000..42baf4d
--- /dev/null
@@ -0,0 +1,20 @@
+! { dg-do run }
+! { dg-options "-fno-automatic" }
+!
+! PR fortran/37835
+! Contributed by Tobias Burnus <burnus@gcc.gnu.org>.
+!
+subroutine foo(n)
+  integer :: n
+  type t
+    integer :: i = 42
+  end type t
+  type(t) :: myt
+  if(n==1) myt%i = 2
+  print *, myt%i
+  if (n > 1 .and. myt%i /= 2) stop 1
+end subroutine foo
+
+call foo(1)
+call foo(2)
+end