From: Richard Kenner Date: Mon, 14 Mar 1994 13:11:32 +0000 (-0500) Subject: (expand_expr): Don't call bc_expand_expr if EXPAND_INITIALIZER. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1d556704ce9087ddd019d69cee9e5e21be5eec32;p=gcc.git (expand_expr): Don't call bc_expand_expr if EXPAND_INITIALIZER. From-SVN: r6781 --- diff --git a/gcc/expr.c b/gcc/expr.c index c750cb60e68..5117b271bfc 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -3634,7 +3634,7 @@ expand_expr (exp, target, tmode, modifier) tree context; - if (output_bytecode) + if (output_bytecode && modifier != EXPAND_INITIALIZER) { bc_expand_expr (exp); return NULL;