Commit 4f4bf94e by Jeff Law Committed by Jeff Law

frv.c (comparison_string): Do not fall through after an error.

	* config/frv/frv.c (comparison_string): Do not fall through after
	an error.

From-SVN: r241576
parent 4b592619
2016-10-26 Jeff Law <law@redhat.com> 2016-10-26 Jeff Law <law@redhat.com>
* config/frv/frv.c (comparison_string): Do not fall through after
an error.
* config/iq2000/iq2000.c (iq2000_function_arg): Adjust fallthru * config/iq2000/iq2000.c (iq2000_function_arg): Adjust fallthru
comment. comment.
(expand_one_builtin): Add missing break. (expand_one_builtin): Add missing break.
......
...@@ -2688,7 +2688,7 @@ comparison_string (enum rtx_code code, rtx op0) ...@@ -2688,7 +2688,7 @@ comparison_string (enum rtx_code code, rtx op0)
bool is_nz_p = GET_MODE (op0) == CC_NZmode; bool is_nz_p = GET_MODE (op0) == CC_NZmode;
switch (code) switch (code)
{ {
default: output_operand_lossage ("bad condition code"); default: output_operand_lossage ("bad condition code"); return "";
case EQ: return "eq"; case EQ: return "eq";
case NE: return "ne"; case NE: return "ne";
case LT: return is_nz_p ? "n" : "lt"; case LT: return is_nz_p ? "n" : "lt";
......
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