arc.c (arc_select_cc_mode): Fix typo.

2014-05-01  Jan-Benedict Glaw  <jbglaw@lug-owl.de>

	* config/arc/arc.c (arc_select_cc_mode): Fix typo.

From-SVN: r209978
This commit is contained in:
Jan-Benedict Glaw 2014-05-01 12:16:42 +00:00 committed by Jan-Benedict Glaw
parent ae5ebda473
commit 486c559b0c
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-05-01 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* config/arc/arc.c (arc_select_cc_mode): Fix typo.
2014-05-01 Yuri Rumyantsev <ysrumyan@gmail.com>
* tree-if-conv.c (is_cond_scalar_reduction): New function.

View File

@ -994,7 +994,7 @@ arc_select_cc_mode (enum rtx_code op, rtx x, rtx y)
if (GET_MODE_CLASS (mode) == MODE_INT
&& y == const0_rtx
&& (op == EQ || op == NE
|| ((op == LT || op == GE) && GET_MODE_SIZE (GET_MODE (x)) <= 4))))
|| ((op == LT || op == GE) && GET_MODE_SIZE (GET_MODE (x)) <= 4)))
return CC_ZNmode;
/* add.f for if (a+b) */