diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-12 11:25:16 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-12 11:25:16 +0000 |
commit | a317e77eebafbc58028cc347bb4264d0a95609b7 (patch) | |
tree | 613335312107799d45a0405c8cd02ce350389985 /gcc/opth-gen.awk | |
parent | 39e1f22f0716c308e7b25b4d045dbe522f4debb2 (diff) | |
download | gcc-a317e77eebafbc58028cc347bb4264d0a95609b7.tar.gz |
* flag-types.h: New.
* Makefile.in (TH_H): Include $(OPTIONS_H) instead of $(FLAGS_H).
(FLAGS_H): Include flag-types.h. Include $(OPTIONS_H) instead of
options.h.
(OPTIONS_H): Define.
(c-family/c-opts.o, lto-opts.o, opts.o): Use $(OPTIONS_H) instead
of options.h.
* configure.ac (tm_include_list): Include options.h not flags.h.
* configure: Regenerate.
* flags.h: Include flag-types.h. Include options.h at top of file
again.
(enum debug_info_type, enum debug_info_level, enum
debug_info_usage, enum symbol_visibility, struct visibility_flags,
enum ira_algorithm, enum ira_region, enum excess_precision, enum
graph_dump_types, enum stack_check_type, enum
warn_strict_overflow_code): Move to flag-types.h
* opth-gen.awk: Include flag-types.h in options.h.
ada:
* gcc-interface/Make-lang.in (ada/misc.o): Use $(OPTIONS_H)
instead of options.h.
java:
* Make-lang.in (java/lang.o): Use $(OPTIONS_H) instead of
options.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@165362 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/opth-gen.awk')
-rw-r--r-- | gcc/opth-gen.awk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/opth-gen.awk b/gcc/opth-gen.awk index 240bc2c5cc9..677225e1c1b 100644 --- a/gcc/opth-gen.awk +++ b/gcc/opth-gen.awk @@ -70,6 +70,8 @@ print "" print "#ifndef OPTIONS_H" print "#define OPTIONS_H" print "" +print "#include \"flag-types.h\"" +print "" have_save = 0; |