aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMike Stump <mrs@gcc.gnu.org>1994-05-06 09:02:42 +0000
committerMike Stump <mrs@gcc.gnu.org>1994-05-06 09:02:42 +0000
commit19d3f3c5230734ad7ecafa3e79e53ebb5c1721f9 (patch)
treefe32ff28b7b9782b1c151a04c7a1cf4c01b0189d /gcc
parent1642c2dec6e4470c7c76184716a1a551cfb33a55 (diff)
downloadgcc-19d3f3c5230734ad7ecafa3e79e53ebb5c1721f9.zip
gcc-19d3f3c5230734ad7ecafa3e79e53ebb5c1721f9.tar.gz
gcc-19d3f3c5230734ad7ecafa3e79e53ebb5c1721f9.tar.bz2
minor tweak.
From-SVN: r7220
Diffstat (limited to 'gcc')
-rw-r--r--gcc/expr.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index 61fe3c1..ed1f1f9 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