Created
August 8, 2016 12:03
-
-
Save Constellation/b486c2461b23a47cae12651002e750c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function test() | |
{ | |
... | |
} | |
noInline(test); | |
for (var i = 0; i < 1e4; ++i) | |
test(); // test will be compiled in FTL if test does not have any problems in FTL (for example, if the test contains the bytecode that is not supported in FTL, compiling in FTL fails) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment