Re: libgo patch committed: Rewrite interface code into Go

2016-10-24 Thread Rainer Orth
Hi Ian, > I committed this patch which should fix this problem. Bootstrapped > and ran Go testsuite on x86_64-pc-linux-gnu, which admittedly proves > little. It did fix it indeed: Solaris 10, 11, and 12 bootstraps are fine again. Thanks. Rainer -- -

Re: libgo patch committed: Rewrite interface code into Go

2016-10-21 Thread Ian Lance Taylor
On Fri, Oct 21, 2016 at 4:16 AM, Rainer Orth wrote: > >> This patch to libgo rewrites the interface code from C to Go. >> >> I started to copy the Go 1.7 interface code, but the gc and gccgo >> representations of interfaces are too different. So instead I rewrote >> the gccgo interface code from

Re: libgo patch committed: Rewrite interface code into Go

2016-10-21 Thread Rainer Orth
Hi Ian, > This patch to libgo rewrites the interface code from C to Go. > > I started to copy the Go 1.7 interface code, but the gc and gccgo > representations of interfaces are too different. So instead I rewrote > the gccgo interface code from C to Go. The code is largely the same > as it was,

libgo patch committed: Rewrite interface code into Go

2016-10-20 Thread Ian Lance Taylor
This patch to libgo rewrites the interface code from C to Go. I started to copy the Go 1.7 interface code, but the gc and gccgo representations of interfaces are too different. So instead I rewrote the gccgo interface code from C to Go. The code is largely the same as it was, but the names are m