diff options
| author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-09 12:49:05 +0000 |
|---|---|---|
| committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-09 12:49:05 +0000 |
| commit | 2b42c27536f55d4cbbbf3ec28f02368d79afa9e8 (patch) | |
| tree | 39755b311b1bc4c8bbb043fa7447bbce9a0c374a /gcc/java/expr.c | |
| parent | d7a60f715c1506baaa58d4d5c4f0104eab910d98 (diff) | |
| download | ppe42-gcc-2b42c27536f55d4cbbbf3ec28f02368d79afa9e8.tar.gz ppe42-gcc-2b42c27536f55d4cbbbf3ec28f02368d79afa9e8.zip | |
�
* parse.y (build_new_array_init): Don't set EXPR_WFL_LINECOL
on CONSTRUCTOR (since that trashes TREE_CST_RTL).
(patch_new_array_init): Clear TREE_CONSTANT also if INDIRECT_REF.
(register_fields): Set TREE_STATIC on NEW_ARRAY_INIT, not on
CONSTRUCTOR (which causes expand_expr to call output_constant_def).
* expr.c (java_lang_expand_expr): Check TREE_STATIC of NEW_ARRAY_INIT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24579 138bc75d-0d04-0410-961f-82ee72b054a4
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 4c5d1bb27f0..136415ba378 100644 --- a/gcc/java/expr.c +++ b/gcc/java/expr.c @@ -1768,7 +1768,7 @@ java_lang_expand_expr (exp, target, tmode, modifier) tree array_decl; #if 0 /* Enable this once we can set the vtable field statically. FIXME */ - if (TREE_CONSTANT (init) && TREE_STATIC (init) + if (TREE_CONSTANT (init) && TREE_STATIC (exp) && JPRIMITIVE_TYPE_P (element_type)) { tree temp, value, init_decl; |

