diff options
author | Jan-Benedict Glaw <jbglaw@lug-owl.de> | 2014-05-01 12:16:42 +0000 |
---|---|---|
committer | Jan-Benedict Glaw <jbglaw@gcc.gnu.org> | 2014-05-01 12:16:42 +0000 |
commit | 486c559b0cb2114f051c85f424cfdfbee7002e16 (patch) | |
tree | 6040b2fa33dc95fdbbf554df71f82d4d19496309 | |
parent | ae5ebda47370113e4f5f58fe23dea8c257eee9e0 (diff) | |
download | gcc-486c559b0cb2114f051c85f424cfdfbee7002e16.zip gcc-486c559b0cb2114f051c85f424cfdfbee7002e16.tar.gz gcc-486c559b0cb2114f051c85f424cfdfbee7002e16.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/arc/arc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c34080b..9a6ef18 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/arc/arc.c b/gcc/config/arc/arc.c index c2c65d3..64ee74f 100644 --- a/gcc/config/arc/arc.c +++ b/gcc/config/arc/arc.c @@ -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) */ |