Don't print warning when moving to static with -fno-automatic
authorJanne Blomqvist <jb@gcc.gnu.org>
Sun, 10 Nov 2019 21:25:25 +0000 (23:25 +0200)
committerJanne Blomqvist <jb@gcc.gnu.org>
Sun, 10 Nov 2019 21:25:25 +0000 (23:25 +0200)
As part of PR 91413, GFortran now prints a warning when a variable is
moved from the stack to static storage. However, when the user
explicitly specifies that all local variables should be put in static
storage with the -fno-automatic option, don't print this warning.

Regtested on x86_64-pc-linux-gnu, committed as obvious.

gcc/fortran/ChangeLog:

2019-11-10  Janne Blomqvist  <jb@gcc.gnu.org>

PR fortran/91413
* trans-decl.c (gfc_finish_var_decl): Don't print warning when
-fno-automatic is enabled.

From-SVN: r278027

gcc/fortran/ChangeLog
gcc/fortran/trans-decl.c

index 33e0f18aeef30b9b9caf81ed37fa4d7cefb070ef..2031688474b69daa3c5e9f54ae8827061548f891 100644 (file)
@@ -1,3 +1,9 @@
+2019-11-10  Janne Blomqvist  <jb@gcc.gnu.org>
+
+       PR fortran/91413
+       * trans-decl.c (gfc_finish_var_decl): Don't print warning when
+       -fno-automatic is enabled.
+
 2019-11-10  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/92123
index ffa61111316c29d423e40e9f48c2e7e0b3d698a5..76e1c7a845385e69c1dd2e2be151131d25559e1c 100644 (file)
@@ -746,15 +746,16 @@ gfc_finish_var_decl (tree decl, gfc_symbol * sym)
          || sym->attr.allocatable)
       && !DECL_ARTIFICIAL (decl))
     {
-      gfc_warning (OPT_Wsurprising,
-                  "Array %qs at %L is larger than limit set by"
-                  " %<-fmax-stack-var-size=%>, moved from stack to static"
-                  " storage. This makes the procedure unsafe when called"
-                  " recursively, or concurrently from multiple threads."
-                  " Consider using %<-frecursive%>, or increase the"
-                  " %<-fmax-stack-var-size=%> limit, or change the code to"
-                  " use an ALLOCATABLE array.",
-                  sym->name, &sym->declared_at);
+      if (flag_max_stack_var_size > 0)
+       gfc_warning (OPT_Wsurprising,
+                    "Array %qs at %L is larger than limit set by"
+                    " %<-fmax-stack-var-size=%>, moved from stack to static"
+                    " storage. This makes the procedure unsafe when called"
+                    " recursively, or concurrently from multiple threads."
+                    " Consider using %<-frecursive%>, or increase the"
+                    " %<-fmax-stack-var-size=%> limit, or change the code to"
+                    " use an ALLOCATABLE array.",
+                    sym->name, &sym->declared_at);
 
       TREE_STATIC (decl) = 1;