aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/expr.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@cygnus.com>2000-03-16 18:32:45 +0000
committerTom Tromey <tromey@gcc.gnu.org>2000-03-16 18:32:45 +0000
commit64aa33dd9c7353a00780a6c6a45c4f835adc2996 (patch)
treea9a67b3bdebd8b47728643d12e9e3d6dffc0f055 /gcc/java/expr.c
parent3c0fca12828829ee5a8c277c1792f59dfd868fef (diff)
downloadgcc-64aa33dd9c7353a00780a6c6a45c4f835adc2996.zip
gcc-64aa33dd9c7353a00780a6c6a45c4f835adc2996.tar.gz
gcc-64aa33dd9c7353a00780a6c6a45c4f835adc2996.tar.bz2
lang.c (flag_hash_synchronization): New global.
* lang.c (flag_hash_synchronization): New global. (lang_f_options): Added `hash-synchronization'. * lang-options.h: Mention -fhash-synchronization. * java-tree.h (flag_hash_synchronization): Declare. * expr.c (java_lang_expand_expr): Only push `sync_info' value when hash table synchronization is disabled. * decl.c (init_decl_processing): Only push `sync_info' value when hash table synchronization is disabled. * class.c (make_class_data): Only push `sync_info' field when hash table synchronization is disabled. Removed dead code. From-SVN: r32593
Diffstat (limited to 'gcc/java/expr.c')
-rw-r--r--gcc/java/expr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/java/expr.c b/gcc/java/expr.c
index 86c731f..f92fc8d 100644
--- a/gcc/java/expr.c
+++ b/gcc/java/expr.c
@@ -79,7 +79,7 @@ static tree build_java_throw_out_of_bounds_exception PARAMS ((tree));
static tree build_java_check_indexed_type PARAMS ((tree, tree));
static tree java_array_data_offset PARAMS ((tree));
static tree case_identity PARAMS ((tree, tree));
-
+
static tree operand_type[59];
extern struct obstack permanent_obstack;
@@ -1996,7 +1996,8 @@ java_lang_expand_expr (exp, target, tmode, modifier)
PUSH_FIELD_VALUE (temp, "vtable",
null_pointer_node /* FIXME */
);
- PUSH_FIELD_VALUE (temp, "sync_info", null_pointer_node);
+ if (! flag_hash_synchronization)
+ PUSH_FIELD_VALUE (temp, "sync_info", null_pointer_node);
FINISH_RECORD_CONSTRUCTOR (temp);
START_RECORD_CONSTRUCTOR (value, array_type);
PUSH_SUPER_VALUE (value, temp);