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 /gcc/config | |
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
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/arc/arc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) */ |