diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-12 15:32:05 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-12 15:32:05 -0800 |
commit | bf348610b7e133e7b06b7f0275509d77adf17a38 (patch) | |
tree | 5333af22fb47b960bb2fe3076cf510a07e2499d6 | |
parent | 3556b3d1c8fa6282a0dcc0764e5d8cf619333800 (diff) | |
download | cproc-bf348610b7e133e7b06b7f0275509d77adf17a38.tar.xz |
Fix adding pointer to integer
-rw-r--r-- | expr.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -309,6 +309,7 @@ mkbinaryexpr(struct location *loc, enum tokenkind op, struct expression *l, stru r = mkbinaryexpr(loc, TMUL, exprconvert(r, &typeulong), mkconstexpr(&typeulong, t->base->size)); } else if (lp & PROPINT && r->type->kind == TYPEPOINTER) { t = r->type; + l = mkbinaryexpr(loc, TMUL, exprconvert(l, &typeulong), mkconstexpr(&typeulong, t->base->size)); } else { error(loc, "invalid operands to '+' operator"); } |