re PR go/65755 (incorrect reflection of struct fields with gccgo)
authorIan Lance Taylor <ian@gcc.gnu.org>
Fri, 17 Apr 2015 18:19:44 +0000 (18:19 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Fri, 17 Apr 2015 18:19:44 +0000 (18:19 +0000)
commit90e00f872d715c6d54742e6bbcafa2ce4f033dc8
treee4fe10e347023d58baaa566c58cf2424111004f8
parentfdce7c12f37a334c1af1ee86b7f7755cf98a5bca
re PR go/65755 (incorrect reflection of struct fields with gccgo)

PR go/65755
compiler, runtime, reflect: Use reflection string for type comparisons.

Change the runtime and reflect libraries to always use only
the type reflection string to determine whether two types are
equal.  It previously used the PkgPath and Name values for a
type name, but that required a PkgPath that did not match the
gc compiler.

Change the compiler to use the same PkgPath value as the gc
compiler in all cases.

Change the compiler to put the receiver type in the reflection
string for a type defined inside a method.

From-SVN: r222194
gcc/go/gofrontend/types.cc
libgo/go/reflect/type.go
libgo/runtime/go-typedesc-equal.c