Commit 15ea09a0 by Ian Lance Taylor

Improve error about indirecting an unsafe.Pointer type.

From-SVN: r171574
parent fbe185d3
......@@ -3669,6 +3669,14 @@ Unary_expression::do_lower(Gogo*, Named_object*, int)
}
}
// Catching an invalid indirection of unsafe.Pointer here avoid
// having to deal with TYPE_VOID in other places.
if (op == OPERATOR_MULT && expr->type()->is_unsafe_pointer_type())
{
error_at(this->location(), "invalid indirect of %<unsafe.Pointer%>");
return Expression::make_error(this->location());
}
if (op == OPERATOR_PLUS || op == OPERATOR_MINUS
|| op == OPERATOR_NOT || op == OPERATOR_XOR)
{
......
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