From: Mike Stump Date: Fri, 6 May 1994 10:13:17 +0000 (+0000) Subject: tell expand_expr that we are going to ignore the cleanup. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d3158f1a2385750e61dc82d332a18cbd5cbb2c60;p=gcc.git tell expand_expr that we are going to ignore the cleanup. TREE_SIDE_EFFECTS should be set on these things. From-SVN: r7222 --- diff --git a/gcc/expr.c b/gcc/expr.c index ed1f1f9f004..2716b0865fb 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -8157,7 +8157,7 @@ expand_cleanups_to (old_cleanups) { while (cleanups_this_call != old_cleanups) { - expand_expr (TREE_VALUE (cleanups_this_call), NULL_RTX, VOIDmode, 0); + expand_expr (TREE_VALUE (cleanups_this_call), const0_rtx, VOIDmode, 0); cleanups_this_call = TREE_CHAIN (cleanups_this_call); } }