diff options
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index 8f30878..658da38 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -1074,6 +1074,7 @@ struct lang_decl GTY(()) #define TYPE_TO_RUNTIME_MAP(T) (TYPE_LANG_SPECIFIC (T)->type_to_runtime_map) #define TYPE_ASSERTIONS(T) (TYPE_LANG_SPECIFIC (T)->type_assertions) +#define TYPE_PACKAGE(T) (TYPE_LANG_SPECIFIC (T)->package) struct lang_type GTY(()) { @@ -1122,6 +1123,9 @@ struct lang_type GTY(()) /* Table of type assertions to be evaluated by the runtime when this class is loaded. */ + tree package; /* IDENTIFIER_NODE for package this class is + a member of. */ + unsigned pic:1; /* Private Inner Class. */ unsigned poic:1; /* Protected Inner Class. */ unsigned strictfp:1; /* `strictfp' class. */ |