[qfcc] Treat all dereferences and indirect

Why I had a const pointer test on there is beyond me.
This commit is contained in:
Bill Currie 2020-03-16 20:24:22 +09:00
parent 69924fe717
commit 1d10136f2e

View file

@ -722,7 +722,7 @@ is_indirect (expr_t *e)
return 1;
if (!(e->type == ex_uexpr && e->e.expr.op == '.'))
return 0;
return is_const_ptr (e->e.expr.e1);
return 1;
}
static sblock_t *