From 7a03f4b4f83f6aa9114f3315cf6372bdc5fda428 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 6 Mar 1993 07:42:54 -0500 Subject: [PATCH] (expand_call): Fix typo in unaligned code. From-SVN: r3668 --- gcc/calls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/calls.c b/gcc/calls.c index 1f69a63ee14..0ba935d5ba8 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 -- 2.30.2