From d3158f1a2385750e61dc82d332a18cbd5cbb2c60 Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Fri, 6 May 1994 10:13:17 +0000 Subject: [PATCH] tell expand_expr that we are going to ignore the cleanup. TREE_SIDE_EFFECTS should be set on these things. From-SVN: r7222 --- gcc/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.30.2