diff options
author | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 2000-06-26 21:30:18 -0700 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 2000-06-26 21:30:18 -0700 |
commit | cf1748bfce3d254bfd8bad027ab55e25793ce2fc (patch) | |
tree | c2d03eb4b63c497be0beb8cbe569f96cb6890ed4 /gcc/java/java-tree.h | |
parent | 047142d32ee7988c4715e6784fd0fe228db7caa8 (diff) | |
download | gcc-cf1748bfce3d254bfd8bad027ab55e25793ce2fc.zip gcc-cf1748bfce3d254bfd8bad027ab55e25793ce2fc.tar.gz gcc-cf1748bfce3d254bfd8bad027ab55e25793ce2fc.tar.bz2 |
[multiple changes]
2000-06-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
* class.c (set_super_info): Handle ACC_PRIVATE for (inner)
classes.
* java-tree.h (TYPE_PRIVATE_INNER_CLASS): New macro.
(struct lang_type): New field `pic.'
(CLASS_PRIVATE): New macro.
* parse.y (check_inner_class_access): New function.
(jdep_resolve_class): Call it.
2000-06-09 Bryce McKinlay <bryce@albatross.co.nz>
* parse.y (register_fields): Permit static fields in inner classes
if they are final. Fix for PR gcj/255.
(These patches are fixes to the PR #224 and #255:
http://sourceware.cygnus.com/ml/java-prs/2000-q2/msg00158.html
http://sourceware.cygnus.com/ml/java-prs/2000-q2/msg00287.html)
From-SVN: r34725
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index 6f3d327..2f1bbec 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -575,6 +575,7 @@ struct lang_decl_var /* The decl of the synthetic method `class$' used to handle `.class' for non primitive types when compiling to bytecode. */ #define TYPE_DOT_CLASS(T) (TYPE_LANG_SPECIFIC(T)->dot_class) +#define TYPE_PRIVATE_INNER_CLASS(T) (TYPE_LANG_SPECIFIC(T)->pic) struct lang_type { @@ -589,6 +590,7 @@ struct lang_type needs to be invoked and generated when compiling to bytecode to implement <non_primitive_type>.class */ + unsigned pic:1; /* Private Inner Class. */ }; #ifdef JAVA_USE_HANDLES @@ -837,6 +839,7 @@ struct rtx_def * java_lang_expand_expr PARAMS ((tree, rtx, enum machine_mode, #define CLASS_ABSTRACT(DECL) DECL_LANG_FLAG_5 (DECL) #define CLASS_SUPER(DECL) DECL_LANG_FLAG_6 (DECL) #define CLASS_STATIC(DECL) DECL_LANG_FLAG_7 (DECL) +#define CLASS_PRIVATE(DECL) (TYPE_PRIVATE_INNER_CLASS (TREE_TYPE (DECL))) /* @deprecated marker flag on methods, fields and classes */ |