From d4009a2e458962548d4229f0c4d31789941c7721 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Mon, 6 Jan 2020 11:58:31 -0500 Subject: small bugfix --- .gitignore | 1 + cgen.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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; -- cgit v1.2.3