You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fakecgo: C functions require nosplit (#295)
* fakecgo: C functions require nosplit
fakecgo runs on systemstack so we shouldn't ever split the stack.
Fixes #287
all: struct return fixes (#221)
On amd64, there was a crash when calling objc.Send with a struct return type. This was due to calling the wrong objc message send function.
On arm64, if a struct return contained structs that only contained floats it would expect it to be in R8 instead of the expected float registers
Closes #223