diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-06-28 06:18:10 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-06-28 06:18:10 +0000 |
commit | 9756310a6efc9bcf05f0d0996b2d1ee4b6777c51 (patch) | |
tree | ac5ad4358cf1509d02037b019f635c885b68d262 /gcc/opts.h | |
parent | f7400894d99e0482401d74affbd81ff1851423e1 (diff) | |
download | gcc-9756310a6efc9bcf05f0d0996b2d1ee4b6777c51.zip gcc-9756310a6efc9bcf05f0d0996b2d1ee4b6777c51.tar.gz gcc-9756310a6efc9bcf05f0d0996b2d1ee4b6777c51.tar.bz2 |
Makefile.in: Update.
* Makefile.in: Update.
* opts.c: Include tm_p.h.
(handle_options): Make static.
(decode_options): Copied from toplev.c.
* opts.h (decode_options): New.
* toplev.c (parse_options_and_default_flags): Move most to opts.c,
some to...
(general_init): ...here.
(toplev_main): Use decode_options instead.
* toplev.h (save_argc, save_argv): New.
From-SVN: r68629
Diffstat (limited to 'gcc/opts.h')
-rw-r--r-- | gcc/opts.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -21,8 +21,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #ifndef GCC_OPTS_H #define GCC_OPTS_H -extern void handle_options (unsigned int argc, char **argv, - unsigned int lang_mask); +extern void decode_options (int argc, char **argv); struct cl_option { |