diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 9a3da82207e6..de192e2f0f21 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -34,6 +34,11 @@ `wfl_operator', to maybe_build_primttype_type_ref. Fixes PR gcj/235. +2000-05-23 Bryce McKinlay + + * parse.y (patch_method_invocation): Don't try to lookup methods + in primitive types. + 2000-05-02 Alexandre Petit-Bianco * parse.y (resolve_field_access): Call the appropriate diff --git a/gcc/java/parse.c b/gcc/java/parse.c index c7871837132f..fd547f27768b 100644 --- a/gcc/java/parse.c +++ b/gcc/java/parse.c @@ -12090,6 +12090,16 @@ patch_method_invocation (patch, primary, where, is_static, ret_decl) type = GET_SKIP_TYPE (resolved); resolve_and_layout (type, NULL_TREE); + + if (JPRIMITIVE_TYPE_P (type)) + { + parse_error_context + (identifier_wfl, + "Can't invoke a method on primitive type `%s'", + IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)))); + PATCH_METHOD_RETURN_ERROR (); + } + list = lookup_method_invoke (0, identifier_wfl, type, identifier, args); args = nreverse (args); diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 385f91396885..2e6325e2e1c6 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -9392,6 +9392,16 @@ patch_method_invocation (patch, primary, where, is_static, ret_decl) type = GET_SKIP_TYPE (resolved); resolve_and_layout (type, NULL_TREE); + + if (JPRIMITIVE_TYPE_P (type)) + { + parse_error_context + (identifier_wfl, + "Can't invoke a method on primitive type `%s'", + IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)))); + PATCH_METHOD_RETURN_ERROR (); + } + list = lookup_method_invoke (0, identifier_wfl, type, identifier, args); args = nreverse (args);