diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-09-03 22:00:05 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2010-09-03 22:00:05 +0100 |
commit | d158303227fdca143db5decf983978f635be2ba9 (patch) | |
tree | 4c595a910219a400780aabf660892ec4ce06400f /gcc/java/ChangeLog | |
parent | e6bc4de90d944db687e20de1ac5fbebe32c9642d (diff) | |
download | gcc-d158303227fdca143db5decf983978f635be2ba9.zip gcc-d158303227fdca143db5decf983978f635be2ba9.tar.gz gcc-d158303227fdca143db5decf983978f635be2ba9.tar.bz2 |
options.texi (SeparateAlias): Document.
* doc/options.texi (SeparateAlias): Document.
* opt-functions.awk (switch_flags): Handle SeparateAlias.
* opth-gen.awk: Generate enumeration names for options marked
SeparateAlias, but not for those marked Ignore.
* opts-common.c (generate_canonical_option): Don't output separate
argument for options marked CL_SEPARATE_ALIAS.
(decode_cmdline_option): Handle CL_SEPARATE_ALIAS.
* opts.h (CL_SEPARATE_ALIAS): New.
(CL_PARAMS, CL_WARNING, CL_OPTIMIZATION, CL_DRIVER, CL_TARGET,
CL_COMMON): Adjust definitions.
* config/i386/darwin.opt, config/mips/sde.opt: New.
* common.opt (fdump-final-insns): New.
* config.gcc (i[34567]86-*-darwin*, x86_64-*-darwin*): Add
i386/darwin.opt.
(mips*-sde-elf*): Add mips/sde.opt.
* config/mips/sde.h (DRIVER_SELF_SPECS): Don't handle
-mno-data-in-code and -mcode-xonly here.
* defaults.h (DEFAULT_SWITCH_TAKES_ARG): Add 'd'.
* gcc.c (option_map): Add "j" to --dump entry.
(translate_options): Don't translate -d to -foutput-class-dir=
here.
java:
* lang.opt (d): New.
testsuite:
* gcc.dg/opts-4.c: New test.
From-SVN: r163844
Diffstat (limited to 'gcc/java/ChangeLog')
-rw-r--r-- | gcc/java/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 3da5013..2866cf9 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +2010-09-03 Joseph Myers <joseph@codesourcery.com> + + * lang.opt (d): New. + 2010-09-03 H.J. Lu <hongjiu.lu@intel.com> PR java/45504 |