Commit a0236882 by Ian Lance Taylor

compiler: Better error message for invalid use of predeclared function.

From-SVN: r183466
parent a7a790e9
......@@ -1328,7 +1328,8 @@ Func_expression::get_tree_without_closure(Gogo* gogo)
// can't take their address.
if (fntype->is_builtin())
{
error_at(this->location(), "invalid use of special builtin function %qs",
error_at(this->location(),
"invalid use of special builtin function %qs; must be called",
this->function_->name().c_str());
return error_mark_node;
}
......
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