diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-08-01 14:04:02 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-08-01 14:04:02 +0000 |
commit | bf42e45b205e05a710de0e9fe0fc33e668fdb891 (patch) | |
tree | 186dff8557e01e179836315ff7e9868a89ea1f7b /gcc/cppinit.c | |
parent | a5bcc58230c173c6923908cd7622dca7240f18de (diff) | |
download | gcc-bf42e45b205e05a710de0e9fe0fc33e668fdb891.zip gcc-bf42e45b205e05a710de0e9fe0fc33e668fdb891.tar.gz gcc-bf42e45b205e05a710de0e9fe0fc33e668fdb891.tar.bz2 |
Makefile.in: Refine dependencies.
* Makefile.in: Refine dependencies.
* c-opts.c (c_common_handle_option): Do nothing for -Wimport.
* c.opt: Update help for -Wimport.
* cppfiles.c: Include hashtab.h. Update comments.
(stack_file): Read the file before updating dependencies.
(once_only_file_p): Be smarter about marking once-only files.
(_cpp_mark_file_once_only): Correct the check for existence on
the list.
(open_file_failed): Use name not path, which is NULL.
* cpphash.h: Don't include hashtab.h.
(struct _cpp_file): Remove.
(struct cpp_reader): Update.
* cppinit.c (cpp_create_reader): Don't initialize warn_import.
* cpplib.h (struct cpp_options): Remove warn_import.
(cpp_simplify_path): Remove.
From-SVN: r70045
Diffstat (limited to 'gcc/cppinit.c')
-rw-r--r-- | gcc/cppinit.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/cppinit.c b/gcc/cppinit.c index 5f10e27..b719a85 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -133,7 +133,6 @@ cpp_create_reader (enum c_lang lang, hash_table *table) pfile = xcalloc (1, sizeof (cpp_reader)); cpp_set_lang (pfile, lang); - CPP_OPTION (pfile, warn_import) = 1; CPP_OPTION (pfile, warn_multichar) = 1; CPP_OPTION (pfile, discard_comments) = 1; CPP_OPTION (pfile, discard_comments_in_macro_exp) = 1; |