aboutsummaryrefslogtreecommitdiff
path: root/decl.c
diff options
context:
space:
mode:
Diffstat (limited to 'decl.c')
-rw-r--r--decl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/decl.c b/decl.c
index 324e5aa..8ffc058 100644
--- a/decl.c
+++ b/decl.c
@@ -216,7 +216,7 @@ tagspec(struct scope *s)
name = tok.lit;
next();
if (consume(TASSIGN)) {
- e = constexpr(s);
+ e = evalexpr(s);
if (e->kind != EXPRCONST || !(e->type->prop & PROPINT))
error(&tok.loc, "expected integer constant expression");
i = e->u.constant.u;