From: Mike Stump Date: Fri, 6 May 1994 09:02:42 +0000 (+0000) Subject: minor tweak. X-Git-Tag: misc/cutover-egcs-0~6723 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19d3f3c5230734ad7ecafa3e79e53ebb5c1721f9;p=thirdparty%2Fgcc.git minor tweak. From-SVN: r7220 --- diff --git a/gcc/expr.c b/gcc/expr.c index 61fe3c1dee48..ed1f1f9f004c 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -5597,9 +5597,11 @@ expand_expr (exp, target, tmode, modifier) if (TREE_OPERAND (exp, 2) == 0) TREE_OPERAND (exp, 2) = maybe_build_cleanup (slot); if (TREE_OPERAND (exp, 2)) - cleanups_this_call = tree_cons (NULL_TREE, - TREE_OPERAND (exp, 2), - cleanups_this_call); + { + cleanups_this_call = tree_cons (NULL_TREE, + TREE_OPERAND (exp, 2), + cleanups_this_call); + } } } else