Re: [libgo, arm64] Future of reflection

2014-10-02 Thread Richard Henderson
On 10/01/2014 03:08 PM, Ian Lance Taylor wrote: >> func TestMakeFunc(t *testing.T) { >> switch runtime.GOARCH { >> case "amd64", "386": >> default: >> t.Skip("MakeFunc not implemented for " + runtime.GOARCH) >> } > > Wait, what sources are you looki

Re: [libgo, arm64] Future of reflection

2014-10-01 Thread Ian Lance Taylor
On Wed, Oct 1, 2014 at 2:14 PM, Richard Henderson wrote: > > I've been looking at reflection, and support for non-x86 targets. > > In mainline, there's some support for using libffi, but I wasn't completely > confident that things are working correctly. It doesn't help that the > testsuite still

[libgo, arm64] Future of reflection

2014-10-01 Thread Richard Henderson
I've been looking at reflection, and support for non-x86 targets. In mainline, there's some support for using libffi, but I wasn't completely confident that things are working correctly. It doesn't help that the testsuite still has conditionals like func TestMakeFunc(t *testing.T) { swi