record the type of the result of a bind expr

This commit is contained in:
Bill Currie 2002-10-08 18:20:09 +00:00
parent f992090b18
commit bca275944c

View file

@ -617,6 +617,7 @@ new_bind_expr (expr_t *e1, expr_t *e2)
e->e.expr.op = 'b';
e->e.expr.e1 = e1;
e->e.expr.e2 = e2;
e->e.expr.type = get_type (e2);
return e;
}