From 00d412a140c0d9d5bd08d61032a9f15385eceac7 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sat, 20 Apr 2019 11:18:00 -0700 Subject: expr: Check qualifiers when parsing ++/-- expressions --- expr.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/expr.c b/expr.c index da4dd2b..165c7f8 100644 --- a/expr.c +++ b/expr.c @@ -660,10 +660,8 @@ unaryexpr(struct scope *s) l = unaryexpr(s); if (!l->lvalue) error(&tok.loc, "operand of %srement operator must be an lvalue", op == TINC ? "inc" : "dec"); - /* - if (l->qualifiers & QUALCONST) + if (l->qual & QUALCONST) error(&tok.loc, "operand of %srement operator is const qualified", op == TINC ? "inc" : "dec"); - */ e = mkexpr(EXPRINCDEC, l->type); e->incdec.op = op; e->incdec.base = l; -- cgit v1.2.3