Avoid folding constants in assign_expr

This prevents fold_constants from complaining about attempts to take
the address of a vector.
This commit is contained in:
Bill Currie 2019-06-08 13:31:30 +09:00
parent 398e1cf83a
commit e27da9c7db

View file

@ -282,8 +282,6 @@ assign_expr (expr_t *dst, expr_t *src)
return expr;
}
dst = fold_constants (dst);
src = fold_constants (src);
if ((expr = check_valid_lvalue (dst))) {
return expr;