diff options
Diffstat (limited to 'gcc/cp/tree.c')
-rw-r--r-- | gcc/cp/tree.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c index b7c0a8d..b288c5b 100644 --- a/gcc/cp/tree.c +++ b/gcc/cp/tree.c @@ -2594,17 +2594,17 @@ stabilize_expr (tree exp, tree* initp) return exp; } -/* Add NEW, an expression whose value we don't care about, after the +/* Add NEW_EXPR, an expression whose value we don't care about, after the similar expression ORIG. */ tree -add_stmt_to_compound (tree orig, tree new) +add_stmt_to_compound (tree orig, tree new_expr) { - if (!new || !TREE_SIDE_EFFECTS (new)) + if (!new_expr || !TREE_SIDE_EFFECTS (new_expr)) return orig; if (!orig || !TREE_SIDE_EFFECTS (orig)) - return new; - return build2 (COMPOUND_EXPR, void_type_node, orig, new); + return new_expr; + return build2 (COMPOUND_EXPR, void_type_node, orig, new_expr); } /* Like stabilize_expr, but for a call whose arguments we want to |