aboutsummaryrefslogtreecommitdiff
path: root/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'expr.c')
-rw-r--r--expr.c4
1 files changed, 1 insertions, 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;