Updated CompilerOptimizations (markdown)

Dmitry Vyukov 2015-02-05 12:11:59 +03:00
parent ca122f45eb
commit 7da5509237

@ -41,6 +41,8 @@ decisions for the gc toolchain.
### Function Inlining
Only short and simple functions are inlined. To be inlined a function must contain less than ~40 expressions and does not contain complex things like loops, labels, closures, panic's, recover's, select's, switch'es, etc.
* **gc:** 1.0+
* **gccgo:** -O1 and above.