I\'m interested in examining the x86 assembly output of the standard Go compiler to see if my code is really being converted into reasonably efficient assembly code; hopeful
Run go tool objdump on the resulting executable file.
go tool objdump
To restrict the output to interesting functions, use its -s option.
-s