From: Jan Brittenson Date: Wed, 22 Sep 1993 17:54:20 +0000 (-0700) Subject: fixed compilation problems in bc_expand_decl_init X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e81d77b5026906c6b6014b9607b7f472108bba9c;p=gcc.git fixed compilation problems in bc_expand_decl_init From-SVN: r5396 --- diff --git a/gcc/stmt.c b/gcc/stmt.c index 2b9ff9145dd..8c69b155bc3 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -3692,11 +3692,10 @@ bc_expand_decl_init (decl) if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE || code == POINTER_TYPE) - expand_assignment (TREE_TYPE (decl), decl, - convert (TREE_TYPE (decl), integer_zero_node)); + expand_assignment (TREE_TYPE (decl), decl, 0, 0); } else if (DECL_INITIAL (decl)) - expand_assignment (TREE_TYPE (decl), decl, DECL_INITIAL (decl)); + expand_assignment (TREE_TYPE (decl), decl, 0, 0); /* Restore stack depth */ if (org_stack_depth > stack_depth)