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
This commit is contained in:
Neil Booth 2003-06-25 05:52:14 +00:00 committed by Neil Booth
parent a7c0a4422b
commit 0bd95603bb
4 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -1,3 +1,7 @@
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

View File

@ -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);

View File

@ -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"))