diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/fortran/gfortran.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 9857aee..6b6067c 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2005-04-29 Francois-Xavier Coudert <coudert@clipper.ens.fr> + + * gfortran.h (gfc_namespace): Add seen_implicit_none field, + Tobias forgot this in previous commit. + 2005-04-29 Paul Brook <paul@codesourcery.com> * trans-expr.c (gfc_conv_expr_present): Fix broken assert. Update diff --git a/gcc/fortran/gfortran.h b/gcc/fortran/gfortran.h index 24ffcf3..e669403 100644 --- a/gcc/fortran/gfortran.h +++ b/gcc/fortran/gfortran.h @@ -817,7 +817,7 @@ typedef struct gfc_namespace gfc_charlen *cl_list; - int save_all, seen_save; + int save_all, seen_save, seen_implicit_none; /* Normally we don't need to refcount namespaces. However when we read a module containing a function with multiple entry points, this |