Bug 1229813 - Enable branch pruning. r=jandem

This commit is contained in:
Nicolas B. Pierron 2015-12-23 14:19:39 +00:00
parent 35990083dc
commit c9c5b3190a
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ DefaultJitOptions::DefaultJitOptions()
SET_DEFAULT(disableLoopUnrolling, true);
// Toggle whether Profile Guided Optimization is globally disabled.
SET_DEFAULT(disablePgo, true);
SET_DEFAULT(disablePgo, false);
// Toggles whether instruction reordering is globally disabled.
SET_DEFAULT(disableInstructionReordering, false);

View File

@ -6645,7 +6645,7 @@ main(int argc, char** argv, char** envp)
|| !op.addStringOption('\0', "ion-edgecase-analysis", "on/off",
"Find edge cases where Ion can avoid bailouts (default: on, off to disable)")
|| !op.addStringOption('\0', "ion-pgo", "on/off",
"Profile guided optimization (default: off, on to enable)")
"Profile guided optimization (default: on, off to disable)")
|| !op.addStringOption('\0', "ion-range-analysis", "on/off",
"Range analysis (default: on, off to disable)")
#if defined(__APPLE__)