2015-10-23 Joern Rennecke <joern.renne...@embecosm.com>
PR libgcc/66883 * config/epiphany/udivsi3-float.c: Fix CONCISE test, and comment typo. Index: config/epiphany/udivsi3-float.c =================================================================== --- config/epiphany/udivsi3-float.c (revision 229235) +++ config/epiphany/udivsi3-float.c (revision 229236) @@ -49,9 +49,9 @@ __udivsi3 (unsigned int a, unsigned int u0.f = (int) a; u1.f = (int) b; #ifdef CONCISE - if (a < 0) + if ((int) a < 0) u0.i = (a >> 8) - 0x00800000 + 0x3f800000 + (31 << 23); -#else /* To use flag seting / cmove, this can be written as: */ +#else /* To use flag setting / cmove, this can be written as: */ { unsigned c = 0xff800000 - 0x4f000000; t = (int)a >> 8;