Y
Hacker News
new
|
ask
|
show
|
jobs
by
whyrusleeping
4434 days ago
with gccgo you get to take advantage of a lot of gcc's optimizations (-O3) and it can generate faster code because of it.
1 comments
4ad
4434 days ago
There is extremely little code in the world that is faster with gccgo. Yes, gccgo can do better with floating point, but the lack of escape analysis slows it down tremendously in every real world situation out there.
http://dave.cheney.net/2013/11/19/benchmarking-go-1-2rc5-vs-...
link
supersillyus
4434 days ago
There is a GSOC to add escape analysis (
https://www.google-melange.com/gsoc/project/details/google/g...
). It'll be interesting to see how that affects things.
link
whyrusleeping
4434 days ago
Wow. I guess the last time i look at the differences was around 1.1 Thanks for the correction
link
http://dave.cheney.net/2013/11/19/benchmarking-go-1-2rc5-vs-...