Commit 7a03f4b4 by Richard Kenner

(expand_call): Fix typo in unaligned code.

From-SVN: r3668
parent de9e0d4f
......@@ -1577,7 +1577,7 @@ expand_call (exp, target, ignore)
emit_insn (gen_rtx (CLOBBER, VOIDmode, reg));
for (bitpos = 0;
bitpos < BITS_PER_WORD && bytes >= 0;
bitpos < BITS_PER_WORD && bytes > 0;
bitpos += bitsize, bytes -= bitsize / BITS_PER_UNIT)
{
int xbitpos = (BYTES_BIG_ENDIAN
......
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