compiler: unalias receiver type in export data

Test case is https://golang.org/cl/292009.

Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/291991
This commit is contained in:
Ian Lance Taylor 2021-02-14 18:59:07 -08:00
parent b37695c9bf
commit e7a8d69a55
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
a5d7c4225fbbd06b97db6fa424cc0cb5191082d4 c406de0594782b1d6782a732a50f5b76387852dc
The first line of this file holds the git revision number of the last The first line of this file holds the git revision number of the last
merge done from the gofrontend repository. merge done from the gofrontend repository.

View File

@ -5898,7 +5898,7 @@ Function::export_func_with_type(Export* exp, const Named_object* no,
exp->write_name(receiver->name()); exp->write_name(receiver->name());
exp->write_escape(receiver->note()); exp->write_escape(receiver->note());
exp->write_c_string(" "); exp->write_c_string(" ");
exp->write_type(receiver->type()); exp->write_type(receiver->type()->unalias());
exp->write_c_string(") "); exp->write_c_string(") ");
} }