diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-21 18:11:52 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-21 18:11:52 +0000 |
commit | 3b988d6d3cd5e6552a529e4d9f5890c965838d85 (patch) | |
tree | e85000d9d68619834479e4e7570f55a74816a9db /gcc/java/parse.h | |
parent | cce6196311919822ae8e4e4a552044b128ab95e2 (diff) | |
download | gcc-3b988d6d3cd5e6552a529e4d9f5890c965838d85.tar.gz |
2000-07-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (java_complete_lhs): LOOP_EXPR:, SWITCH_EXPR: the node
or its first operand can be error marks.
2000-07-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.h (SET_TYPE_FOR_RESOLUTION): Use GET_CPC.
* parse.y (method_header): Likewise.
2000-07-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (find_as_inner_class): Handle the case where the
enclosing context of an innerclass has been loaded as bytecode.
(Side gcj/225 bug fix and some cleanup:
http://gcc.gnu.org/ml/gcc-patches/2000-07/msg00832.html)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35176 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/parse.h')
-rw-r--r-- | gcc/java/parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/parse.h b/gcc/java/parse.h index 687dc951c92..50a9e3e14cd 100644 --- a/gcc/java/parse.h +++ b/gcc/java/parse.h @@ -537,7 +537,7 @@ typedef struct _jdeplist { { \ tree returned_type; \ (CHAIN) = 0; \ - if (TREE_TYPE (ctxp->current_parsed_class) == object_type_node \ + if (TREE_TYPE (GET_CPC ()) == object_type_node \ && TREE_CODE (TYPE) == EXPR_WITH_FILE_LOCATION \ && EXPR_WFL_NODE (TYPE) == unqualified_object_id_node) \ (TYPE) = object_type_node; \ |