PR c++/64356
* constexpr.c (cxx_eval_binary_expression): Fix pasto.
From-SVN: r219687
2015-01-15 Jason Merrill <jason@redhat.com>
+ PR c++/64356
+ * constexpr.c (cxx_eval_binary_expression): Fix pasto.
+
PR c++/63283
* constexpr.c (potential_constant_expression_1): Handle reference
args in templates.
rhs = cxx_eval_constant_expression (ctx, orig_rhs, /*lval*/false,
non_constant_p, overflow_p);
if (!ptr)
- VERIFY_CONSTANT (lhs);
+ VERIFY_CONSTANT (rhs);
location_t loc = EXPR_LOCATION (t);
enum tree_code code = TREE_CODE (t);
else if (cxx_eval_check_shift_p (loc, ctx, code, type, lhs, rhs))
*non_constant_p = true;
if (!ptr)
- VERIFY_CONSTANT (lhs);
+ VERIFY_CONSTANT (r);
return r;
}