Commit 25f3f9bf by Richard Kenner

(print_int_cst_octal): Fix bug in last change.

From-SVN: r5812
parent cbb2bbd4
......@@ -1386,11 +1386,10 @@ print_int_cst_octal (c)
;
else if (width > HOST_BITS_PER_WIDE_INT)
high &= (((HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT)) - 1);
else
{
high = 0;
low &= (((HOST_WIDE_INT) 1 << width) - 1);
}
else if (width == HOST_BITS_PER_WIDE_INT)
high = 0;
else
high = 0, low &= (((HOST_WIDE_INT) 1 << width) - 1);
fprintf (asmfile, "0");
......
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