Commit 2784528c by Neil Booth Committed by Neil Booth

cppinit.c (cpp_handle_option): Set warn_endif_labels if -pedantic here...

	* cppinit.c (cpp_handle_option): Set warn_endif_labels if
	-pedantic here...
	(cpp_post_options): ... not here.

From-SVN: r51258
parent 05671968
2002-03-24 Neil Booth <neil@daikokuya.demon.co.uk>
* cppinit.c (cpp_handle_option): Set warn_endif_labels if
-pedantic here...
(cpp_post_options): ... not here.
2002-03-24 Neil Booth <neil@daikokuya.demon.co.uk>
Aldy Hernandez <aldyh@redhat.com>
Removal of separate preprocessor cpp0.
......
......@@ -1470,6 +1470,7 @@ cpp_handle_option (pfile, argc, argv, ignore)
/* fall through */
case OPT_pedantic:
CPP_OPTION (pfile, pedantic) = 1;
CPP_OPTION (pfile, warn_endif_labels) = 1;
break;
case OPT_trigraphs:
CPP_OPTION (pfile, trigraphs) = 1;
......@@ -1837,10 +1838,6 @@ cpp_post_options (pfile)
|| CPP_OPTION (pfile, deps_file)
|| CPP_OPTION (pfile, deps_phony_targets)))
cpp_fatal (pfile, "you must additionally specify either -M or -MM");
/* Some things should always be on in pedantic mode. */
if (CPP_OPTION (pfile, pedantic) == 1)
CPP_OPTION (pfile, warn_endif_labels) = 1;
}
/* Set up dependency-file output. On exit, if print_deps is non-zero
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment