[go-nuts] Re: Calling a Go function from asm ("fatal error: missing stackmap")

2016-09-19 Thread Peng Gao
On Tuesday, September 20, 2016 at 11:00:34 AM UTC+8, Peng Gao wrote: > > BTW in your test file, you can directly append your bytes slice. > b1 = append(b1, vs...) > and slicesEqual is redundant, bytes.Equal does test the length of two > arguments > I mix up cap and len, just ignore it. > > On

[go-nuts] Re: Calling a Go function from asm ("fatal error: missing stackmap")

2016-09-19 Thread Peng Gao
BTW in your test file, you can directly append your bytes slice. b1 = append(b1, vs...) and slicesEqual is redundant, bytes.Equal does test the length of two arguments. On Tuesday, September 20, 2016 at 6:56:55 AM UTC+8, Caleb Spare wrote: > > I'm trying to call a Go function from asm and I'm ha