mirror of git://gcc.gnu.org/git/gcc.git
re PR other/52786 (double-int.c:231:31: error: comparison between signed and unsigned)
2012-03-30 Richard Guenther <rguenther@suse.de> PR middle-end/52786 * double-int.c (rshift_double): Remove not needed cast. From-SVN: r186000
This commit is contained in:
parent
207503fa51
commit
5cf01d62a8
|
@ -1,3 +1,8 @@
|
||||||
|
2012-03-30 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
|
PR middle-end/52786
|
||||||
|
* double-int.c (rshift_double): Remove not needed cast.
|
||||||
|
|
||||||
2012-03-30 Richard Guenther <rguenther@suse.de>
|
2012-03-30 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
* tree-affine.h (print_aff): Remove.
|
* tree-affine.h (print_aff): Remove.
|
||||||
|
|
|
@ -228,7 +228,7 @@ rshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
|
||||||
|
|
||||||
/* Zero / sign extend all bits that are beyond the precision. */
|
/* Zero / sign extend all bits that are beyond the precision. */
|
||||||
|
|
||||||
if (count >= (HOST_WIDE_INT)prec)
|
if (count >= prec)
|
||||||
{
|
{
|
||||||
*hv = signmask;
|
*hv = signmask;
|
||||||
*lv = signmask;
|
*lv = signmask;
|
||||||
|
|
Loading…
Reference in New Issue