aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.co.uk>2003-06-08 12:24:23 +0000
committerAndreas Jaeger <aj@gcc.gnu.org>2003-06-08 14:24:23 +0200
commita165c30201ad79e331fd1fe05ce069dd6ef152de (patch)
tree5125d470dbd9951a7300a2a6e26aaea70053c37c /gcc/ada
parent22e494a0aec5a8385713d5522ea351e43fcea530 (diff)
downloadgcc-a165c30201ad79e331fd1fe05ce069dd6ef152de.zip
gcc-a165c30201ad79e331fd1fe05ce069dd6ef152de.tar.gz
gcc-a165c30201ad79e331fd1fe05ce069dd6ef152de.tar.bz2
Make-lang.in: Update.
2003-06-08 Neil Booth <neil@daikokuya.co.uk> * Make-lang.in: Update. * misc.c: Include opts.h. Define cl_options_count and cl_options. From-SVN: r67623
Diffstat (limited to 'gcc/ada')
-rw-r--r--gcc/ada/ChangeLog5
-rw-r--r--gcc/ada/Make-lang.in2
-rw-r--r--gcc/ada/misc.c3
3 files changed, 9 insertions, 1 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 2a584d0..07b5c09 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-08 Neil Booth <neil@daikokuya.co.uk>
+
+ * Make-lang.in: Update.
+ * misc.c: Include opts.h. Define cl_options_count and cl_options.
+
2003-06-07 Neil Booth <neil@daikokuya.co.uk>
* misc.c (gnat_init_options): Update.
diff --git a/gcc/ada/Make-lang.in b/gcc/ada/Make-lang.in
index 1fd77d5..0475aad 100644
--- a/gcc/ada/Make-lang.in
+++ b/gcc/ada/Make-lang.in
@@ -1014,7 +1014,7 @@ ada/misc.o : ada/misc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
diagnostic.h output.h except.h $(TM_P_H) langhooks.h debug.h $(LANGHOOKS_DEF_H) \
libfuncs.h $(OPTABS_H) ada/ada.h ada/types.h ada/atree.h ada/nlists.h \
ada/elists.h ada/sinfo.h ada/einfo.h ada/namet.h ada/stringt.h ada/uintp.h \
- ada/fe.h $(ADA_TREE_H) ada/gigi.h ada/adadecode.h
+ ada/fe.h $(ADA_TREE_H) ada/gigi.h ada/adadecode.h opts.h
ada/targtyps.o : ada/targtyps.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
ada/ada.h ada/types.h ada/atree.h ada/nlists.h ada/elists.h ada/uintp.h \
diff --git a/gcc/ada/misc.c b/gcc/ada/misc.c
index 180bb9a..6937f8b 100644
--- a/gcc/ada/misc.c
+++ b/gcc/ada/misc.c
@@ -74,10 +74,13 @@
#include "ada-tree.h"
#include "gigi.h"
#include "adadecode.h"
+#include "opts.h"
extern FILE *asm_out_file;
extern int save_argc;
extern char **save_argv;
+const unsigned int cl_options_count;
+const struct cl_option cl_options[1];
static size_t gnat_tree_size PARAMS ((enum tree_code));
static bool gnat_init PARAMS ((void));