diff options
author | Alexandre Petit-Bianco <apbianco@cygnus.com> | 1999-05-25 16:36:07 +0000 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 1999-05-25 09:36:07 -0700 |
commit | dc4e6ccfe59431e533042ba5de7e1ca3e5c2b7d3 (patch) | |
tree | 1eaea5b879e97570da44a93cc9082fdfe30f2559 /gcc/java/parse.c | |
parent | 47d98fa268b4dd24dd89ae58cd0489910e1fd721 (diff) | |
download | gcc-dc4e6ccfe59431e533042ba5de7e1ca3e5c2b7d3.zip gcc-dc4e6ccfe59431e533042ba5de7e1ca3e5c2b7d3.tar.gz gcc-dc4e6ccfe59431e533042ba5de7e1ca3e5c2b7d3.tar.bz2 |
[multiple changes]
Tue May 25 15:06:13 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (patch_assignment): Save the rhs before using it as an
argument to _Jv_CheckArrayStore.
Tue May 25 11:23:59 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* lex.c (java_parse_doc_section): Fixed `tag' buffer size.
Mon May 24 13:26:00 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* lex.c (java_lex): Accepts `+' or `-' after the beginning of a
floating point litteral only when the exponent indicator has been
parsed.
From-SVN: r27147
Diffstat (limited to 'gcc/java/parse.c')
-rw-r--r-- | gcc/java/parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/java/parse.c b/gcc/java/parse.c index 9fa65e8..4784285 100644 --- a/gcc/java/parse.c +++ b/gcc/java/parse.c @@ -11432,6 +11432,7 @@ patch_assignment (node, wfl_op1, wfl_op2) } /* Build the invocation of _Jv_CheckArrayStore */ + new_rhs = save_expr (new_rhs); check = build (CALL_EXPR, void_type_node, build_address_of (soft_checkarraystore_node), tree_cons (NULL_TREE, base, |