OSDN Git Service

2012-12-19 Tobias Burnus <burnus@net-b.de>
authorburnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 Dec 2012 23:05:49 +0000 (23:05 +0000)
committerburnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 Dec 2012 23:05:49 +0000 (23:05 +0000)
        PR fortran/55733
        * trans-decl.c (gfc_create_string_length): Avoid setting
        TREE_STATIC for automatic variables with -fno-automatic.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194621 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 2da48f3..6a24ef7 100644 (file)
@@ -1,4 +1,10 @@
 2012-12-19  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/55733
+       * trans-decl.c (gfc_create_string_length): Avoid setting
+       TREE_STATIC for automatic variables with -fno-automatic.
+
+2012-12-19  Tobias Burnus  <burnus@net-b.de>
            Jakub Jelinek  <jakub@redhat.com>
            Janus Weil  <janus@gcc.gnu.org>
 
index 3202840..588f55a 100644 (file)
@@ -1089,9 +1089,15 @@ gfc_create_string_length (gfc_symbol * sym)
       tree length;
       const char *name;
 
+      /* The string length variable shall be in static memory if it is either
+        explicitly SAVED, a module variable or with -fno-automatic. Only
+        relevant is "len=:" - otherwise, it is either a constant length or
+        it is an automatic variable.  */
       bool static_length = sym->attr.save
                           || sym->ns->proc_name->attr.flavor == FL_MODULE
-                          || gfc_option.flag_max_stack_var_size == 0;
+                          || (gfc_option.flag_max_stack_var_size == 0
+                              && sym->ts.deferred && !sym->attr.dummy
+                              && !sym->attr.result && !sym->attr.function);
 
       /* Also prefix the mangled name. We need to call GFC_PREFIX for static
         variables as some systems do not support the "." in the assembler name.