https://golang.org/doc/asm
--
Aram Hăvărneanu
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit
Thanks
- so I assume the exported function Frexp is a golang fallback if the
relevant architecture assembly file isn't found (?)
Is there any official (or unofficial) documentation on linking assembly
from packages?
--
You received this message because you are subscribed to the Google Grou
On Wed, Jul 13, 2016 at 11:11 AM, wrote:
> Bodyless functions - such as
> https://golang.org/src/math/frexp.go?s=469:514#L6 found in the standard
> library are currently mystifying me..
These functions are actually implemented in architecture specific
assembly and linked in as part of the build
(newb question)
Bodyless functions - such as
https://golang.org/src/math/frexp.go?s=469:514#L6 found in the standard
library are currently mystifying me..
There's an unexported function of the same name and signature on the same
file but no call to it.
Is this explained somewhere (I read the