From: Richard Kenner Date: Thu, 21 Apr 1994 19:28:59 +0000 (-0400) Subject: (bc_expand_expr): Call expand_decl and expand_decl_init, not the bc_ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9bac07c3ddc891049cd5552a7ef107531bf7a819;p=gcc.git (bc_expand_expr): Call expand_decl and expand_decl_init, not the bc_ versions. From-SVN: r7114 --- diff --git a/gcc/expr.c b/gcc/expr.c index f7c4b8a5b28..5407bf84898 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -6364,9 +6364,9 @@ bc_expand_expr (exp) if (DECL_RTL (vars) == 0) { 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); }