diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-06-15 14:56:32 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-06-15 14:56:32 +0000 |
commit | be43ab4e01784fedf2cb1eca843783e5eecd3535 (patch) | |
tree | bb53c4922fdf27602a271638fead41e6077d92ea /gcc/opts.h | |
parent | 4682ae0463c9fcc254fe1c8ede9da9133a9956bc (diff) | |
download | gcc-be43ab4e01784fedf2cb1eca843783e5eecd3535.zip gcc-be43ab4e01784fedf2cb1eca843783e5eecd3535.tar.gz gcc-be43ab4e01784fedf2cb1eca843783e5eecd3535.tar.bz2 |
c-opts.c (lang_flags): Update for new spelling of flags.
* c-opts.c (lang_flags): Update for new spelling of flags.
(write_langs): Similarly.
* c.opt: Specify languages.
* opts.h: Remove languages.
* opts.sh: Recognise front-end defined languages.
ada:
* lang.opt: Declare Ada.
* misc.c (gnat_init_options): Update.
doc:
* sourcebuild.texi: Update.
f:
* lang.opt: Declare F77.
java:
* lang.opt: Declare Java.
* lang.c (java_init_options): Update.
treelang:
* lang.opt: Declare Treelang. Update.
* tree1.c (treelang_init_options): Update.
From-SVN: r67976
Diffstat (limited to 'gcc/opts.h')
-rw-r--r-- | gcc/opts.h | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -33,18 +33,9 @@ struct cl_option extern const struct cl_option cl_options[]; extern const unsigned int cl_options_count; -#define CL_C (1 << 0) /* Only C. */ -#define CL_OBJC (1 << 1) /* Only ObjC. */ -#define CL_CXX (1 << 2) /* Only C++. */ -#define CL_OBJCXX (1 << 3) /* Only ObjC++. */ -#define CL_F77 (1 << 4) /* Only Fortran. */ -#define CL_JAVA (1 << 5) /* Only Java. */ -#define CL_ADA (1 << 6) /* Only Ada. */ -#define CL_TREELANG (1 << 7) /* Only Treelang. */ -#define CL_COMMON (1 << 8) /* Language-independent. */ - #define CL_JOINED (1 << 24) /* If takes joined argument. */ #define CL_SEPARATE (1 << 25) /* If takes a separate argument. */ #define CL_REJECT_NEGATIVE (1 << 26) /* Reject no- form. */ +#define CL_COMMON (1 << 27) /* Language-independent. */ #endif |