diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 2da48f3d2ce6..6a24ef7214ce 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2012-12-19 Tobias Burnus + + 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 Jakub Jelinek Janus Weil diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c index 3202840cb140..588f55a02df2 100644 --- a/gcc/fortran/trans-decl.c +++ b/gcc/fortran/trans-decl.c @@ -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.