From 68a830fe3a4d760b2a991c706aa12f4716015ec5 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 2 Jul 2002 02:56:11 +0000 Subject: For PR libgcj/7073: * parse.y (patch_incomplete_class_ref): Handle VOID_TYPE specially. From-SVN: r55167 --- gcc/java/ChangeLog | 6 ++++++ gcc/java/parse.y | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'gcc/java') diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 755d40f..2a5b27a 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 c6179ba..dac6602 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. */ -- cgit v1.1