summaryrefslogtreecommitdiff
path: root/gcc/fix-header.c
diff options
context:
space:
mode:
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-07 15:17:07 +0000
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-07 15:17:07 +0000
commitaf808d7d9f63fc8b114d6def6866d0d2c5b6b24e (patch)
treec1c9be83692efba34fd6a681a9cf6a699a78a8c9 /gcc/fix-header.c
parent5aa3f5e2a0c432ca6625a2c528a836b1148fe046 (diff)
downloadgcc-af808d7d9f63fc8b114d6def6866d0d2c5b6b24e.tar.gz
* c-lang.c (c_post_options): Call cpp_post_options.
* cppmain.c (main): Similarly. * fix-header.c (read_scan_file): Similarly. * cp/decl2.c (cxx_post_options): Similarly. * objc/objc-act.c (objc_post_options): Similarly. * cppinit.c (cpp_start_read): Move option consistency checks to cpp_post_options. Don't call init_dependency_output. If needed, add default target and main file dependency. (OPT_MD, OPT_MMD): Remove. (OPT_MF): New. (cpp_handle_option): Update for OPT_* changes. (cpp_post_options): New. (init_dependency_output): Command line -MF overrides environment variables. Don't set default target etc. Suppress output if dependencies are going to stdout. (print_help): Update. * cpplib.h (cpp_post_options): New. * gcc.c (cpp_options): Update for -MD, -MMD, -MF. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38777 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r--gcc/fix-header.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c
index 28cfe870974..05485592d5f 100644
--- a/gcc/fix-header.c
+++ b/gcc/fix-header.c
@@ -629,6 +629,7 @@ read_scan_file (in_fname, argc, argv)
i = cpp_handle_options (scan_in, argc, argv);
if (i < argc && ! CPP_FATAL_ERRORS (scan_in))
cpp_fatal (scan_in, "Invalid option `%s'", argv[i]);
+ cpp_post_options (pfile);
if (CPP_FATAL_ERRORS (scan_in))
exit (FATAL_EXIT_CODE);