From 8b10f07e6260895025a4ea0efa05b8bd57ca92d9 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Fri, 22 Feb 2019 21:09:07 -0800 Subject: When & is applied to an array, it is no longer decayed --- expr.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/expr.c b/expr.c index 009e05f..501e0e5 100644 --- a/expr.c +++ b/expr.c @@ -88,8 +88,10 @@ mkunaryexpr(enum tokenkind op, struct expression *base) switch (op) { case TBAND: - if (base->flags & EXPRFLAG_DECAYED) + if (base->flags & EXPRFLAG_DECAYED) { + base->flags &= ~EXPRFLAG_DECAYED; return base; + } expr = mkexpr(EXPRUNARY, mkpointertype(base->type), 0); expr->unary.op = op; expr->unary.base = base; -- cgit v1.2.3