diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-14 01:41:25 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-14 02:05:44 -0800 |
commit | 7e5d1aca647f13c0ae3a7cb0d4aff602e6bf7bea (patch) | |
tree | e2d61c652b67dd7c01629453cab3b0594f8348ea | |
parent | f96bd3efcb284f5baf2d637240c9cd2ac07ca672 (diff) | |
download | cproc-7e5d1aca647f13c0ae3a7cb0d4aff602e6bf7bea.tar.xz |
Allow initializing array with longer strings
-rw-r--r-- | decl.c | 2 | ||||
-rw-r--r-- | init.c | 8 | ||||
-rw-r--r-- | init.h | 2 | ||||
-rw-r--r-- | tests/initializer-long-string.c | 1 | ||||
-rw-r--r-- | tests/initializer-long-string.qbe | 1 |
5 files changed, 8 insertions, 6 deletions
@@ -885,7 +885,7 @@ struct declaration *stringdecl(struct expression *expr) if (!d) { d = mkdecl(DECLOBJECT, expr->type, LINKNONE); d->value = mkglobal("string", true); - emitdata(d, mkinit(0, expr)); + emitdata(d, mkinit(0, expr->type->size, expr)); *entry = d; } return d; @@ -31,13 +31,13 @@ struct initparser { }; struct initializer * -mkinit(uint64_t offset, struct expression *expr) +mkinit(uint64_t start, uint64_t end, struct expression *expr) { struct initializer *init; init = xmalloc(sizeof(*init)); - init->start = offset; - init->end = offset + expr->type->size; + init->start = start; + init->end = end; init->expr = expr; init->next = NULL; @@ -257,7 +257,7 @@ parseinit(struct scope *s, struct type *t) focus(&p); } add: - initadd(&init, mkinit(p.sub->offset, expr)); + initadd(&init, mkinit(p.sub->offset, p.sub->offset + p.sub->type->size, expr)); for (;;) { if (p.sub->type->kind == TYPEARRAY && p.sub->type->incomplete) p.sub->type->incomplete = false; @@ -9,5 +9,5 @@ struct type; struct function; struct declaration; -struct initializer *mkinit(uint64_t, struct expression *); +struct initializer *mkinit(uint64_t, uint64_t, struct expression *); struct initializer *parseinit(struct scope *, struct type *); diff --git a/tests/initializer-long-string.c b/tests/initializer-long-string.c new file mode 100644 index 0000000..4de06d4 --- /dev/null +++ b/tests/initializer-long-string.c @@ -0,0 +1 @@ +char s[4] = "hello"; diff --git a/tests/initializer-long-string.qbe b/tests/initializer-long-string.qbe new file mode 100644 index 0000000..3aa2f6f --- /dev/null +++ b/tests/initializer-long-string.qbe @@ -0,0 +1 @@ +export data $s = align 1 { b "hell", } |