Commit 5c71c5b1 by Richard Kenner

(alpha_emit_set_const): Use 'U' for unsigned constants.

From-SVN: r10503
parent 23334240
......@@ -695,7 +695,7 @@ alpha_emit_set_const (target, mode, c, n)
if ((HOST_BITS_PER_WIDE_INT != 64
|| c >> 31 == -1 || c >> 31 == 0)
&& c != 0x80000000u)
&& c != 0x80000000U)
{
HOST_WIDE_INT low = (c & 0xffff) - 2 * (c & 0x8000);
HOST_WIDE_INT tmp1 = c - low;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment