From 41e862a6a2b193b6bab86bc29e2db3d42baa828a Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Fri, 31 Jan 2020 12:51:20 -0800 Subject: qbe: Make non-constant initializer expression a proper error --- qbe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbe.c b/qbe.c index 868fb32..a1afbd5 100644 --- a/qbe.c +++ b/qbe.c @@ -1263,7 +1263,7 @@ dataitem(struct expr *expr, uint64_t size) printf(", z %" PRIu64, size - i); break; default: - fatal("unimplemented initdata"); + error(&tok.loc, "initializer is not a constant expression"); } } -- cgit v1.2.3