Commit 9bac07c3 by Richard Kenner

(bc_expand_expr): Call expand_decl and expand_decl_init, not the bc_

versions.

From-SVN: r7114
parent 560c94a2
...@@ -6364,9 +6364,9 @@ bc_expand_expr (exp) ...@@ -6364,9 +6364,9 @@ bc_expand_expr (exp)
if (DECL_RTL (vars) == 0) if (DECL_RTL (vars) == 0)
{ {
vars_need_expansion = 1; vars_need_expansion = 1;
bc_expand_decl (vars, 0); expand_decl (vars);
} }
bc_expand_decl_init (vars); expand_decl_init (vars);
vars = TREE_CHAIN (vars); vars = TREE_CHAIN (vars);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment