Commit 0bd95603 by Neil Booth Committed by Neil Booth

opts.c (common_handle_option): Add missing break;s.

	* opts.c (common_handle_option): Add missing break;s.
f:
	* top.c (ffe_handle_option): Add missing break;.

From-SVN: r68457
parent a7c0a442
2003-06-25 Neil Booth <neil@daikokuya.co.uk>
* opts.c (common_handle_option): Add missing break;s.
2003-06-24 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300-protos.h: Add a prototype for
......
Wed Jun 25 06:52:12 2003 Neil Booth <neil@daikokuya.co.uk>
* top.c (ffe_handle_option): Add missing break;.
2003-06-24 Scott Snyder <snyder@fnal.gov>
PR fortran/11299
......
......@@ -440,6 +440,7 @@ ffe_handle_option (size_t scode, const char *arg, int value)
ffe_set_case_match (FFE_caseNONE);
ffe_set_case_source (FFE_caseLOWER);
ffe_set_case_symbol (FFE_caseNONE);
break;
case OPT_fcase_preserve:
ffe_set_case_intrin (FFE_caseNONE);
......
......@@ -399,6 +399,7 @@ common_handle_option (size_t scode, const char *arg,
case OPT_Wdeprecated_declarations:
warn_deprecated_decl = value;
break;
case OPT_Wdisabled_optimization:
warn_disabled_optimization = value;
......@@ -1015,6 +1016,7 @@ common_handle_option (size_t scode, const char *arg,
case OPT_ftime_report:
time_report = value;
break;
case OPT_ftls_model_:
if (!strcmp (arg, "global-dynamic"))
......
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