aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--expr.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/expr.c b/expr.c
index 165c7f8..3e2c140 100644
--- a/expr.c
+++ b/expr.c
@@ -674,17 +674,23 @@ unaryexpr(struct scope *s)
case TADD:
next();
e = castexpr(s);
+ if (!(e->type->prop & PROPARITH))
+ error(&tok.loc, "operand of unary '+' operator must have arithmetic type");
e = exprconvert(e, typeintpromote(e->type));
break;
case TSUB:
next();
e = castexpr(s);
+ if (!(e->type->prop & PROPARITH))
+ error(&tok.loc, "operand of unary '-' operator must have arithmetic type");
e = exprconvert(e, typeintpromote(e->type));
e = mkbinaryexpr(&tok.loc, TSUB, mkconstexpr(&typeint, 0), e);
break;
case TBNOT:
next();
e = castexpr(s);
+ if (!(e->type->prop & PROPINT))
+ error(&tok.loc, "operand of '~' operator must have integer type");
e = exprconvert(e, typeintpromote(e->type));
e = mkbinaryexpr(&tok.loc, TXOR, e, mkconstexpr(e->type, -1));
break;