From 19d3f3c5230734ad7ecafa3e79e53ebb5c1721f9 Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Fri, 6 May 1994 09:02:42 +0000 Subject: [PATCH] minor tweak. From-SVN: r7220 --- gcc/expr.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gcc/expr.c b/gcc/expr.c index 61fe3c1dee4..ed1f1f9f004 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 -- 2.30.2