2012-06-09 Kenneth Zadeck <zadeck@naturalbridge.com>
* simplify-rtx.c (simplify_const_binary_operation): Fixed shift
count trucation.
From-SVN: r188359
+2012-06-09 Kenneth Zadeck <zadeck@naturalbridge.com>
+
+ * simplify-rtx.c (simplify_const_binary_operation): Fixed shift
+ count trucation.
+
2012-06-08 Richard Henderson <rth@redhat.com>
PR c++/53602
unsigned HOST_WIDE_INT cnt;
if (SHIFT_COUNT_TRUNCATED)
- o1 = double_int_zext (o1, GET_MODE_PRECISION (mode));
+ {
+ o1.high = 0;
+ o1.low &= GET_MODE_PRECISION (mode) - 1;
+ }
if (!double_int_fits_in_uhwi_p (o1)
|| double_int_to_uhwi (o1) >= GET_MODE_PRECISION (mode))