diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-06-08 11:27:44 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-06-08 11:27:44 +0000 |
commit | c8b04b134a525899da2973edc8a816380c0af050 (patch) | |
tree | 546e72b8e9e7dc7c24141977569edd91d8ca080a /gcc/f | |
parent | 85d2b0b49a7f35c69989d0550635b307b7639f5f (diff) | |
download | gcc-c8b04b134a525899da2973edc8a816380c0af050.zip gcc-c8b04b134a525899da2973edc8a816380c0af050.tar.gz gcc-c8b04b134a525899da2973edc8a816380c0af050.tar.bz2 |
Make-lang.in: Update.
f:
* Make-lang.in: Update.
* top.c: Include opts.h. Define cl_options_count and cl_options.
java:
* Make-lang.in: Update.
* lang.c: Include opts.h. Define cl_options_count and cl_options.
From-SVN: r67621
Diffstat (limited to 'gcc/f')
-rw-r--r-- | gcc/f/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/f/Make-lang.in | 2 | ||||
-rw-r--r-- | gcc/f/top.c | 4 |
3 files changed, 10 insertions, 1 deletions
diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog index 920cf96..cbf5941 100644 --- a/gcc/f/ChangeLog +++ b/gcc/f/ChangeLog @@ -1,3 +1,8 @@ +Sun Jun 8 12:28:14 2003 Neil Booth <neil@daikokuya.co.uk> + + * Make-lang.in: Update. + * top.c: Include opts.h. Define cl_options_count and cl_options. + 2003-06-07 Andreas Jaeger <aj@suse.de> * symbol.c (ffesymbol_new_): Remove tests for macro diff --git a/gcc/f/Make-lang.in b/gcc/f/Make-lang.in index cf6c298..bf7b99c 100644 --- a/gcc/f/Make-lang.in +++ b/gcc/f/Make-lang.in @@ -542,7 +542,7 @@ f/top.o: f/top.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/top.h f/malloc.h f/where.h \ f/info-w.def f/target.h f/lex.h f/type.h f/lab.h f/storag.h \ f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \ f/intrin.def f/data.h f/expr.h f/implic.h f/src.h f/st.h flags.h \ - toplev.h coretypes.h $(TM_H) + toplev.h coretypes.h $(TM_H) opts.h f/type.o: f/type.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/type.h f/malloc.h \ coretypes.h $(TM_H) f/where.o: f/where.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/where.h glimits.h \ diff --git a/gcc/f/top.c b/gcc/f/top.c index 8cf217e..597f7af 100644 --- a/gcc/f/top.c +++ b/gcc/f/top.c @@ -55,9 +55,13 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "where.h" #include "flags.h" #include "toplev.h" +#include "opts.h" /* Externals defined here. */ +const unsigned int cl_options_count; +const struct cl_option cl_options[1]; + bool ffe_is_do_internal_checks_ = FALSE; bool ffe_is_90_ = FFETARGET_defaultIS_90; bool ffe_is_automatic_ = FFETARGET_defaultIS_AUTOMATIC; |