aboutsummaryrefslogtreecommitdiff
path: root/qbe.c
diff options
context:
space:
mode:
Diffstat (limited to 'qbe.c')
-rw-r--r--qbe.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/qbe.c b/qbe.c
index 2663085..74b9a06 100644
--- a/qbe.c
+++ b/qbe.c
@@ -308,9 +308,13 @@ funcstore(struct func *f, struct type *t, enum typequal tq, struct lvalue lval,
src = v;
dst = lval.addr;
align = mkintconst(&iptr, t->align);
- for (offset = 0; offset < t->size; offset += t->align) {
+ offset = 0;
+ for (;;) {
tmp = funcinst(f, loadop, &iptr, src, NULL);
funcinst(f, storeop, NULL, tmp, dst);
+ offset += t->align;
+ if (offset >= t->size)
+ break;
src = funcinst(f, IADD, &iptr, src, align);
dst = funcinst(f, IADD, &iptr, dst, align);
}