summaryrefslogtreecommitdiff
path: root/gcc/java/lang-options.h
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2001-07-06 04:31:03 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2001-07-06 04:31:03 +0000
commita5903d8b3b282dd03a922e70e1afcc6a83c93676 (patch)
treed498c40d9bdc06471f3128cc87a64ae04e624526 /gcc/java/lang-options.h
parent3fc8ab5b814c26dec9f0b9cecf095fac8d9cf38d (diff)
downloadgcc-a5903d8b3b282dd03a922e70e1afcc6a83c93676.tar.gz
* lang.c (flag_assume_compiled): Removed.
* java-tree.h (flag_assume_compiled): Removed. * lang-options.h: Removed -ffile-list-file, -fuse-boehm-gc, -fhash-synchronization, -fuse-divide-subroutine, -fcheck-references, -femit-class-file, -femit-class-files, -fassume-compiled. Updated --encoding information. Changed -foutput-class-dir to `-d'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43799 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/lang-options.h')
-rw-r--r--gcc/java/lang-options.h23
1 files changed, 3 insertions, 20 deletions
diff --git a/gcc/java/lang-options.h b/gcc/java/lang-options.h
index c15946e8851..17a16966551 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, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -30,18 +30,6 @@ DEFINE_LANG_NAME ("Java")
{ "-fbounds-check", "" },
{ "-fno-bounds-check",
N_("Disable automatic array bounds checking") },
- { "-fassume-compiled",
- N_("Make is_compiled_class return 1") },
- { "-fno-assume-compiled", "" },
- { "-femit-class-file", "" },
- { "-femit-class-files",
- N_("Dump class files to <name>.class") },
- { "-ffilelist-file",
- N_("input file is list of file names to compile") },
- { "-fuse-boehm-gc",
- N_("Generate code for Boehm GC") },
- { "-fhash-synchronization",
- N_("Don't put synchronization structure in each object") },
{ "-fjni",
N_("Assume native functions are implemented using JNI") },
{ "--classpath",
@@ -51,16 +39,11 @@ DEFINE_LANG_NAME ("Java")
{ "--main",
N_("Choose class whose main method should be used") },
{ "--encoding",
- N_("Choose input encoding (default is UTF-8)") },
+ N_("Choose input encoding (default comes from locale)") },
{ "-I",
N_("Add directory to class path") },
- { "-foutput-class-dir",
+ { "-d",
N_("Directory where class files should be written") },
- { "-fuse-divide-subroutine", "" },
- { "-fno-use-divide-subroutine",
- N_("Use built-in instructions for division") },
- { "-fcheck-references",
- N_("Generate null pointer checks inline") },
{ "-Wredundant-modifiers",
N_("Warn if modifiers are specified when not necessary") },
{ "-Wextraneous-semicolon",