From: Jan-Benedict Glaw Date: Thu, 1 May 2014 12:16:42 +0000 (+0000) Subject: arc.c (arc_select_cc_mode): Fix typo. X-Git-Tag: releases/gcc-5.1.0~7823 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=486c559b0cb2114f051c85f424cfdfbee7002e16;p=thirdparty%2Fgcc.git arc.c (arc_select_cc_mode): Fix typo. 2014-05-01 Jan-Benedict Glaw * config/arc/arc.c (arc_select_cc_mode): Fix typo. From-SVN: r209978 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c34080b4879b..9a6ef18a5d8e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-05-01 Jan-Benedict Glaw + + * config/arc/arc.c (arc_select_cc_mode): Fix typo. + 2014-05-01 Yuri Rumyantsev * 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 c2c65d345096..64ee74f826a9 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) */