aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@gcc.gnu.org>2010-06-01 10:20:24 -0400
committerDiego Novillo <dnovillo@gcc.gnu.org>2010-06-01 10:20:24 -0400
commit558c51c59dea8a6d596889350970fb1d6c947d79 (patch)
treea9b94038e6ad1ab42135385b6219b239fb2504cf /gcc/cp
parent2e3b48853d2d57009cf7e82919cba9eb2cbd5772 (diff)
downloadgcc-558c51c59dea8a6d596889350970fb1d6c947d79.zip
gcc-558c51c59dea8a6d596889350970fb1d6c947d79.tar.gz
gcc-558c51c59dea8a6d596889350970fb1d6c947d79.tar.bz2
Undo inadvertent commit in rev 160105.
From-SVN: r160107
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/cvt.c28
1 files changed, 12 insertions, 16 deletions
diff --git a/gcc/cp/cvt.c b/gcc/cp/cvt.c
index 2654ccd..646610a 100644
--- a/gcc/cp/cvt.c
+++ b/gcc/cp/cvt.c
@@ -822,26 +822,22 @@ ocp_convert (tree type, tree expr, int convtype, int flags)
tree
convert_to_void (tree expr, const char *implicit, tsubst_flags_t complain)
{
+ tree exprv;
+
if (expr == error_mark_node
|| TREE_TYPE (expr) == error_mark_node)
return error_mark_node;
- if (implicit == NULL)
- mark_rvalue_use (expr);
- else
- {
- tree exprv = expr;
-
- while (TREE_CODE (exprv) == COMPOUND_EXPR)
- exprv = TREE_OPERAND (exprv, 1);
- if (DECL_P (exprv) || handled_component_p (exprv))
- /* Expr is not being 'used' here, otherwise we whould have
- called mark_{rl}value_use use here, which would have in turn
- called mark_exp_read. Rather, we call mark_exp_read directly
- to avoid some warnings when
- -Wunused-but-set-{variable,parameter} is in effect. */
- mark_exp_read (exprv);
- }
+ exprv = expr;
+ while (TREE_CODE (exprv) == COMPOUND_EXPR)
+ exprv = TREE_OPERAND (exprv, 1);
+ if (DECL_P (exprv) || handled_component_p (exprv))
+ /* Expr is not being 'used' here, otherwise we whould have
+ called mark_{rl}value_use use here, which would have in turn
+ called mark_exp_read. Rather, we call mark_exp_read directly
+ to avoid some warnings when
+ -Wunused-but-set-{variable,parameter} is in effect. */
+ mark_exp_read (exprv);
if (!TREE_TYPE (expr))
return expr;