Commit 3700e947 by Ian Lance Taylor

re PR other/59545 (Signed integer overflow issues)

	PR other/59545
compiler: Fix bogus invalid static_cast to Unary_expression.

From-SVN: r208888
parent c63de3b3
......@@ -4262,8 +4262,12 @@ Unary_expression::do_get_tree(Translate_context* context)
go_assert(!this->expr_->is_composite_literal()
|| this->expr_->is_immutable());
Unary_expression* ue = static_cast<Unary_expression*>(this->expr_);
go_assert(ue == NULL || ue->op() != OPERATOR_AND);
if (this->expr_->classification() == EXPRESSION_UNARY)
{
Unary_expression* ue =
static_cast<Unary_expression*>(this->expr_);
go_assert(ue->op() != OPERATOR_AND);
}
}
// Build a decl for a constant constructor.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment