diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-13 18:04:28 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-13 19:42:25 -0800 |
commit | d36d945c646800a23a4d4f8c05ab3f2ca4c8f535 (patch) | |
tree | 84a78e9a717a2d3f05c2e034e0be5aa006eec10d | |
parent | 792beff25a6ca5aaf26d5a6dd2449f2e0aefbebb (diff) | |
download | cproc-d36d945c646800a23a4d4f8c05ab3f2ca4c8f535.tar.xz |
Add some missing lvalue conversions
-rw-r--r-- | expr.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -479,6 +479,7 @@ postfixexpr(struct scope *s, struct expression *r) /* fallthrough */ case TARROW: op = tok.kind; + lvalueconvert(r); if (r->type->kind != TYPEPOINTER) error(&tok.loc, "arrow operator must be applied to pointer to struct/union"); tq = QUALNONE; @@ -556,6 +557,7 @@ unaryexpr(struct scope *s) case TMUL: next(); l = castexpr(s); + lvalueconvert(l); if (l->type->kind != TYPEPOINTER) error(&tok.loc, "cannot dereference non-pointer"); e = mkexpr(EXPRUNARY, l->type->base, EXPRFLAG_LVAL); @@ -823,6 +825,7 @@ assignexpr(struct scope *s) } next(); r = assignexpr(s); + lvalueconvert(r); if (op) { /* rewrite `E1 OP= E2` as `T = &E1, *T = *T OP E2`, where T is a temporary slot */ tmp = mkexpr(EXPRTEMP, mkpointertype(l->type), EXPRFLAG_LVAL); |