diff options
Diffstat (limited to 'gcc/fortran/gfortran.h')
-rw-r--r-- | gcc/fortran/gfortran.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/fortran/gfortran.h b/gcc/fortran/gfortran.h index 5e4b322..8665ec9 100644 --- a/gcc/fortran/gfortran.h +++ b/gcc/fortran/gfortran.h @@ -483,7 +483,8 @@ typedef struct dummy:1, result:1, assign:1, threadprivate:1; unsigned data:1, /* Symbol is named in a DATA statement. */ - use_assoc:1; /* Symbol has been use-associated. */ + use_assoc:1, /* Symbol has been use-associated. */ + use_only:1; /* Symbol has been use-associated, with ONLY. */ unsigned in_namelist:1, in_common:1, in_equivalence:1; unsigned function:1, subroutine:1, generic:1, generic_copy:1; @@ -518,6 +519,9 @@ typedef struct modification of type or type parameters is permitted. */ unsigned referenced:1; + /* Set if the symbol has ambiguous interfaces. */ + unsigned ambiguous_interfaces:1; + /* Set if the is the symbol for the main program. This is the least cumbersome way to communicate this function property without strcmp'ing with __MAIN everywhere. */ |