diff options
author | Alexandre Petit-Bianco <apbianco@cygnus.com> | 1999-04-26 19:09:37 +0000 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 1999-04-26 12:09:37 -0700 |
commit | 7f1d48663e8aa1d749c88ffd17365bf2aa80f21a (patch) | |
tree | 38ae2203c1adb1c12229db14df3792c799011465 /gcc/java/decl.c | |
parent | ccd63d90d14a15e87224d8fba54870ab78167a25 (diff) | |
download | gcc-7f1d48663e8aa1d749c88ffd17365bf2aa80f21a.zip gcc-7f1d48663e8aa1d749c88ffd17365bf2aa80f21a.tar.gz gcc-7f1d48663e8aa1d749c88ffd17365bf2aa80f21a.tar.bz2 |
class.c (layout_class_method): Generate <clinit>'s rtl for interfaces.
Sat Apr 24 16:50:19 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* class.c (layout_class_method): Generate <clinit>'s rtl for
interfaces.
* decl.c (complete_start_java_method): Don't call _Jv_InitClass
for interfaces' <clinit>.
* expr.c (lookup_field): Search for fields in interfaces.
(expand_invoke): Fixed indentation.
(expand_java_field_op): Likewise. Use IS_CLINIT.
* parse.h (JPRIMITIVE_TYPE_OR_VOID_P): Macro removed.
(IS_CLINIT): New macro.
* parse.y (type_declaration:): Call maybe_generate_clinit after an
interface was parsed.
(maybe_generate_clinit): Don't generate if the current class is an
interface with only fields of primitive types.
(reset_method_name): Use IS_CLINIT.
(java_complete_expand_method): Expand <clinit> when it exists for
interfaces. Use IS_CLINIT.
(resolve_expression_name): Use DECL_CONTEXT instead of
current_class to build static field references.
(java_complete_lhs): Use IS__CLINIT. Don't use SAVE_EXPR on
ARRAY_REF when doing xreferencing.
(check_final_assignment): Fixed typo in leading comment. Use
IS_CLINIT.
(patch_array_ref): Don't fully expand array references when
xreferencing.
(patch_return): Use IS_CLINIT.
(patch_throw_statement): Likewise.
From-SVN: r26661
Diffstat (limited to 'gcc/java/decl.c')
-rw-r--r-- | gcc/java/decl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/java/decl.c b/gcc/java/decl.c index f248ad2..a04c1c8 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -1526,7 +1526,8 @@ complete_start_java_method (fndecl) #endif if (METHOD_STATIC (fndecl) && ! METHOD_PRIVATE (fndecl) - && ! flag_emit_class_files) + && ! flag_emit_class_files + && ! CLASS_INTERFACE (TYPE_NAME (current_class))) { tree clas = DECL_CONTEXT (fndecl); tree init = build (CALL_EXPR, void_type_node, |