diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-03-06 07:42:54 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-03-06 07:42:54 -0500 |
commit | 7a03f4b4f83f6aa9114f3315cf6372bdc5fda428 (patch) | |
tree | 1f3a81aa3542f9f9df5ade224900f4512c0f1001 /gcc | |
parent | de9e0d4fdf94a0831f16a625a253e41544d4bbad (diff) | |
download | gcc-7a03f4b4f83f6aa9114f3315cf6372bdc5fda428.zip gcc-7a03f4b4f83f6aa9114f3315cf6372bdc5fda428.tar.gz gcc-7a03f4b4f83f6aa9114f3315cf6372bdc5fda428.tar.bz2 |
(expand_call): Fix typo in unaligned code.
From-SVN: r3668
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 1f69a63..0ba935d 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -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 |