summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--cgen.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index fae512f..bf94226 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
toc
a.out
out.c
+point.c
*.top
tests/**/*.c
tests/**/*.bin
diff --git a/cgen.c b/cgen.c
index 82857b0..cdeeec5 100644
--- a/cgen.c
+++ b/cgen.c
@@ -1769,7 +1769,6 @@ static bool cgen_decl(CGenerator *g, Declaration *d) {
}
} else {
/* declarations where we use an expression */
- assert(g->block && !(d->flags & DECL_IS_CONST));
int nidents = (int)arr_len(d->idents);
for (int idx = 0; idx < nidents; ++idx) {
Identifier i = d->idents[idx];
@@ -1787,6 +1786,7 @@ static bool cgen_decl(CGenerator *g, Declaration *d) {
cgen_write(g, "; ");
}
if (has_expr) {
+ assert(g->block && !(d->flags & DECL_IS_CONST));
if (!cgen_expr_pre(g, &d->expr)) return false;
if (d->expr.type.kind == TYPE_TUPLE) {
if (!cgen_set_tuple(g, NULL, d->idents, NULL, &d->expr)) return false;