]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
arc.c (arc_select_cc_mode): Fix typo.
authorJan-Benedict Glaw <jbglaw@lug-owl.de>
Thu, 1 May 2014 12:16:42 +0000 (12:16 +0000)
committerJan-Benedict Glaw <jbglaw@gcc.gnu.org>
Thu, 1 May 2014 12:16:42 +0000 (12:16 +0000)
2014-05-01  Jan-Benedict Glaw  <jbglaw@lug-owl.de>

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

From-SVN: r209978

gcc/ChangeLog
gcc/config/arc/arc.c

index c34080b4879b736bfe6a6631a423a3857d791fb2..9a6ef18a5d8e67ebfa740a9ee834ccdb48036c4a 100644 (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.
index c2c65d3450968e7cbb313e78cce7b7dddd6c91c4..64ee74f826a95df132ebe9e0c0eb15acc8e52bd0 100644 (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) */