diff options
-rw-r--r-- | gcc/java/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/java/parse.y | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 02297cf..0d9f4c5 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,5 +1,10 @@ 2001-08-30 Per Bothner <per@bothner.com> + * parse.y (resolve_qualified_expression_name): If creating a + COMPOUND_EXPR, set it's type correctly. + +2001-08-30 Per Bothner <per@bothner.com> + * jcf-io.c (open_class): Set filename field. * jcf-parse,c (parse_class_file): Set current_function_decl diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 7567c3d..3f1cfa7 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -9418,7 +9418,8 @@ resolve_qualified_expression_name (wfl, found_decl, where_found, type_found) forcoming function's argument. */ if (previous_call_static && is_static) { - decl = build (COMPOUND_EXPR, type, decl, *where_found); + decl = build (COMPOUND_EXPR, TREE_TYPE (*where_found), + decl, *where_found); TREE_SIDE_EFFECTS (decl) = 1; } else |