diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-11 22:40:13 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-11 22:40:13 +0000 |
commit | 6548e80876b803cc3abcc2c8f3ebec8a4c647062 (patch) | |
tree | 2a6d291c47f722d46c49688cc8abaf9c5e8de5d3 /gcc/java/java-tree.h | |
parent | 5b410d6a7a6082f40ec95069ad833c08a2bbb04b (diff) | |
download | gcc-6548e80876b803cc3abcc2c8f3ebec8a4c647062.tar.gz |
* typeck.c (convert): Don't use flag_emit_class_files.
* lang.c (java_post_options): Don't use flag_emit_class_files.
(java_handle_option): Don't use flag_extraneous_semicolon or
flag_redundant.
* jcf-parse.c (HANDLE_CONSTANTVALUE): Don't use
flag_emit_class_files.
(load_class): Likewise.
* java-tree.h (flag_emit_class_files): Don't declare.
(STATIC_CLASS_INIT_OPT_P): Don't use flag_emit_class_files.
(flag_extraneous_semicolon): Don't declare.
(flag_not_overriding): Likewise.
(flag_static_local_jdk1_1): Likewise.
(flag_redundant): Likewise.
* expr.c (build_newarray): Don't use flag_emit_class_files.
* class.c (DEFAULT_ENABLE_ASSERT): Don't use
flag_emit_class_files.
(build_class_ref): Likewise.
* builtins.c (check_for_builtin): Don't use
flag_emit_class_files.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120687 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index 3b0f0f6760d..dbc85d564a7 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -131,8 +131,6 @@ struct JCF; /* The virtual offset symbol table. Used by the runtime to fill out the otable. */ -extern int flag_emit_class_files; - extern int flag_filelist_file; /* When nonzero, permit the use of the assert keyword. */ @@ -144,10 +142,6 @@ extern int flag_assert; extern int flag_jni; -/* When nonzero, report the now deprecated empty statements. */ - -extern int flag_extraneous_semicolon; - /* When nonzero, always check for a non gcj generated classes archive. */ extern int flag_force_classes_archive_check; @@ -158,8 +152,6 @@ extern const char *resource_name; /* Turned to 1 if -Wall was encountered. See lang.c for their meanings. */ extern int flag_wall; extern int flag_redundant; -extern int flag_not_overriding; -extern int flag_static_local_jdk1_1; /* When nonzero, warn when source file is newer than matching class file. */ @@ -1674,7 +1666,7 @@ extern tree *type_map; /* True when we can perform static class initialization optimization */ #define STATIC_CLASS_INIT_OPT_P() \ - (flag_optimize_sci && (optimize >= 2) && ! flag_emit_class_files) + (flag_optimize_sci && (optimize >= 2)) /* These are the possible values for the `state' field of the class structure. This must be kept in sync with libgcj. */ |