From: Tom Tromey Date: Tue, 2 Jul 2002 02:56:11 +0000 (+0000) Subject: For PR libgcj/7073: X-Git-Tag: releases/gcc-3.3.0~4000 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=68a830fe3a4d760b2a991c706aa12f4716015ec5;p=thirdparty%2Fgcc.git For PR libgcj/7073: * parse.y (patch_incomplete_class_ref): Handle VOID_TYPE specially. From-SVN: r55167 --- diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 755d40fc579b..2a5b27a29416 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,9 @@ +2002-07-01 Tom Tromey + + For PR libgcj/7073: + * parse.y (patch_incomplete_class_ref): Handle VOID_TYPE + specially. + 2002-07-01 Roger Sayle * java/decl.c (builtin_function): Accept additional parameter. diff --git a/gcc/java/parse.y b/gcc/java/parse.y index c6179bae1933..dac6602261ce 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -14031,7 +14031,8 @@ patch_incomplete_class_ref (node) if (!(ref_type = resolve_type_during_patch (type))) return error_mark_node; - if (!flag_emit_class_files || JPRIMITIVE_TYPE_P (ref_type)) + if (!flag_emit_class_files || JPRIMITIVE_TYPE_P (ref_type) + || TREE_CODE (ref_type) == VOID_TYPE) { tree dot = build_class_ref (ref_type); /* A class referenced by `foo.class' is initialized. */