mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 12:30:55 +08:00
Permit new of a function type.
From-SVN: r173672
This commit is contained in:
parent
2d8f63a164
commit
8da1c70b57
@ -10624,9 +10624,6 @@ class Allocation_expression : public Expression
|
||||
do_determine_type(const Type_context*)
|
||||
{ }
|
||||
|
||||
void
|
||||
do_check_types(Gogo*);
|
||||
|
||||
Expression*
|
||||
do_copy()
|
||||
{ return new Allocation_expression(this->type_, this->location()); }
|
||||
@ -10639,15 +10636,6 @@ class Allocation_expression : public Expression
|
||||
Type* type_;
|
||||
};
|
||||
|
||||
// Check the type of an allocation expression.
|
||||
|
||||
void
|
||||
Allocation_expression::do_check_types(Gogo*)
|
||||
{
|
||||
if (this->type_->function_type() != NULL)
|
||||
this->report_error(_("invalid new of function type"));
|
||||
}
|
||||
|
||||
// Return a tree for an allocation expression.
|
||||
|
||||
tree
|
||||
|
Loading…
x
Reference in New Issue
Block a user