Commit f0defe58 by Senthil Kumar Selvaraj Committed by Jakub Jelinek

opts.c (common_handle_option): Fix formatting and add FALLTHRU comment.

	* opts.c (common_handle_option): Fix formatting and add FALLTHRU
	comment.

From-SVN: r197743
parent f06a1142
2013-04-11 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
* opts.c (common_handle_option): Fix formatting and add FALLTHRU
comment.
2013-04-11 James Greenhalgh <james.greenhalgh@arm.com> 2013-04-11 James Greenhalgh <james.greenhalgh@arm.com>
* config/aarch64/aarch64-simd.md (aarch64_vcond_internal): Fix * config/aarch64/aarch64-simd.md (aarch64_vcond_internal): Fix
......
...@@ -1700,7 +1700,7 @@ common_handle_option (struct gcc_options *opts, ...@@ -1700,7 +1700,7 @@ common_handle_option (struct gcc_options *opts,
break; break;
case OPT_gdwarf: case OPT_gdwarf:
if (arg && strlen(arg) != 0) if (arg && strlen (arg) != 0)
{ {
error_at (loc, "%<-gdwarf%s%> is ambiguous; " error_at (loc, "%<-gdwarf%s%> is ambiguous; "
"use %<-gdwarf-%s%> for DWARF version " "use %<-gdwarf-%s%> for DWARF version "
...@@ -1708,9 +1708,9 @@ common_handle_option (struct gcc_options *opts, ...@@ -1708,9 +1708,9 @@ common_handle_option (struct gcc_options *opts,
break; break;
} }
else else
{ value = opts->x_dwarf_version;
value = opts->x_dwarf_version;
} /* FALLTHRU */
case OPT_gdwarf_: case OPT_gdwarf_:
if (value < 2 || value > 4) if (value < 2 || value > 4)
error_at (loc, "dwarf version %d is not supported", value); error_at (loc, "dwarf version %d is not supported", value);
......
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