diff options
author | Per Bothner <pbothner@apple.com> | 2003-07-31 19:26:17 +0000 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2003-07-31 12:26:17 -0700 |
commit | 40e941afc1a0d648ba1e42c0d50add96a64b1911 (patch) | |
tree | 1439a449d638a4d9ab3e37e56c424c1622a59ad9 /gcc/c-decl.c | |
parent | 17472bb623e869846f6d555995686bc54e499c10 (diff) | |
download | gcc-40e941afc1a0d648ba1e42c0d50add96a64b1911.zip gcc-40e941afc1a0d648ba1e42c0d50add96a64b1911.tar.gz gcc-40e941afc1a0d648ba1e42c0d50add96a64b1911.tar.bz2 |
opts.c (in_fnames, [...]): Moved here from c-opts.
* opts.c (in_fnames, num_in_fnames): Moved here from c-opts.
(add_input_filename): New function.
(handle_options): Call add_input_filename directly instead of
with a lang hook.
* opts.h (in_fnames, num_in_fnames): Moved here.
(add_input_filename): Declare.
* c-decl.c: Need to #include opts.h.
* Makefile.in (c-decl.o): Also depends on opts.h.
* c-opts.c (in_fnames, num_in_fnames): Moved to opts.c.
(c_common_handle_filename): Replaced by add_input_filename.
* c-common.h (in_fnames, num_in_fnames, c_common_handle_filename):
Remove.
* langhooks.h (struct lang_hooks): Remove handle_filename hook.
* langhooks-def.h (LANG_HOOKS_HANDLE_FILENAME): Remove macro.
(LANG_HOOKS_INITIALIZER): Remove use of LANG_HOOKS_HANDLE_FILENAME.
* c-lang.c (LANG_HOOKS_HANDLE_FILENAME): Remove macro.
From-SVN: r70012
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 8259fb9..1f8ca3f 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -45,6 +45,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "cpplib.h" #include "target.h" #include "debug.h" +#include "opts.h" #include "timevar.h" #include "c-common.h" #include "c-pragma.h" |