diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1994-05-06 09:02:42 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1994-05-06 09:02:42 +0000 |
commit | 19d3f3c5230734ad7ecafa3e79e53ebb5c1721f9 (patch) | |
tree | fe32ff28b7b9782b1c151a04c7a1cf4c01b0189d /gcc | |
parent | 1642c2dec6e4470c7c76184716a1a551cfb33a55 (diff) | |
download | gcc-19d3f3c5230734ad7ecafa3e79e53ebb5c1721f9.zip gcc-19d3f3c5230734ad7ecafa3e79e53ebb5c1721f9.tar.gz gcc-19d3f3c5230734ad7ecafa3e79e53ebb5c1721f9.tar.bz2 |
minor tweak.
From-SVN: r7220
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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 |