diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-04-21 15:28:59 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-04-21 15:28:59 -0400 |
commit | 9bac07c3ddc891049cd5552a7ef107531bf7a819 (patch) | |
tree | 2e18ba356ad99a11e8d9b6fa2eef3873ec9dbcd3 /gcc | |
parent | 560c94a2b972c24833d1378fff64e7fab16cc3cf (diff) | |
download | gcc-9bac07c3ddc891049cd5552a7ef107531bf7a819.zip gcc-9bac07c3ddc891049cd5552a7ef107531bf7a819.tar.gz gcc-9bac07c3ddc891049cd5552a7ef107531bf7a819.tar.bz2 |
(bc_expand_expr): Call expand_decl and expand_decl_init, not the bc_
versions.
From-SVN: r7114
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |