diff options
author | Tom Tromey <tromey@cygnus.com> | 2000-03-16 18:32:45 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-03-16 18:32:45 +0000 |
commit | 64aa33dd9c7353a00780a6c6a45c4f835adc2996 (patch) | |
tree | a9a67b3bdebd8b47728643d12e9e3d6dffc0f055 /gcc/java/lang-options.h | |
parent | 3c0fca12828829ee5a8c277c1792f59dfd868fef (diff) | |
download | gcc-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/lang-options.h')
-rw-r--r-- | gcc/java/lang-options.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/java/lang-options.h b/gcc/java/lang-options.h index 43bf70e..44f9ea4 100644 --- a/gcc/java/lang-options.h +++ b/gcc/java/lang-options.h @@ -1,5 +1,5 @@ /* Switch definitions for the GNU compiler for the Java(TM) language. - Copyright (C) 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of GNU CC. @@ -34,6 +34,7 @@ DEFINE_LANG_NAME ("Java") { "-femit-class-file", "" }, { "-femit-class-files", "Dump class files to <name>.class" }, { "-fuse-boehm-gc", "Generate code for Boehm GC" }, + { "-fhash-synchronization", "Don't put synchronization structure in each object" }, #if ! USE_CPPLIB { "-MD", "Print dependencies to FILE.d" }, { "-MMD", "Print dependencies to FILE.d" }, |