diff options
author | Alexandre Petit-Bianco <apbianco@cygnus.com> | 1999-05-28 19:26:08 +0000 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 1999-05-28 12:26:08 -0700 |
commit | 930248932e3864264cdfe7d40b00a0544f3d4de9 (patch) | |
tree | 6e83ec300251b7f8543755d3a5cf328700d28684 /gcc/java/expr.c | |
parent | 04b1e34d64fd6493fcec4ccb32345a8254f56f8d (diff) | |
download | gcc-930248932e3864264cdfe7d40b00a0544f3d4de9.zip gcc-930248932e3864264cdfe7d40b00a0544f3d4de9.tar.gz gcc-930248932e3864264cdfe7d40b00a0544f3d4de9.tar.bz2 |
[multiple changes]
Fri May 28 18:22:45 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (lookup_field_wrapper): Unified returned value to NULL
or the searched field decl.
Fri May 28 11:34:05 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (fold_constant_for_init): Convert numerical constant
values to the type of the assigned field.
Thu May 27 19:57:40 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* expr.c (lookup_field): Relaxed the test on class loading error
detection.
* parse.y (fold_constant_for_init): Enabeled old code.
Wed May 26 18:06:02 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (valid_ref_assignconv_cast_p): Let `_Jv_CheckCast'
decide the validity of the cast of a java.lang.Cloneable reference
to an array.
(patch_conditional_expr): Fixed first argument passed to
binary_numeric_promotion.
From-SVN: r27229
Diffstat (limited to 'gcc/java/expr.c')
-rw-r--r-- | gcc/java/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/expr.c b/gcc/java/expr.c index 79d0b7b..64651f5 100644 --- a/gcc/java/expr.c +++ b/gcc/java/expr.c @@ -1162,7 +1162,7 @@ lookup_field (typep, name) if (CLASS_P (*typep) && !CLASS_LOADED_P (*typep)) { load_class (*typep, 1); - if (TREE_CODE (TYPE_SIZE (*typep)) == ERROR_MARK) + if (!TYPE_SIZE (*typep) || TREE_CODE (TYPE_SIZE (*typep)) == ERROR_MARK) return error_mark_node; } do |