aboutsummaryrefslogtreecommitdiff
path: root/src/settings.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-02-17 15:40:39 +0100
committerAlon Zakai <alonzakai@gmail.com>2013-02-17 15:40:39 +0100
commit3e0fa38db893f089de92ebe255301ff391f25793 (patch)
treeb43de5215cc02915aaea097230ed665d6401a52e /src/settings.js
parenta124fadbf7fd210a7a6f6649dc7147438215d6ce (diff)
remove PGO option. It is only relevant for non-ta2 builds, which are on the way to deprecation, and it in the best case is not a precise optimization but an optimistic one
Diffstat (limited to 'src/settings.js')
-rw-r--r--src/settings.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/settings.js b/src/settings.js
index 23898195..8e8144f0 100644
--- a/src/settings.js
+++ b/src/settings.js
@@ -205,15 +205,6 @@ var FS_LOG = 0; // Log all FS operations. This is especially helpful when you'r
// a new project and want to see a list of file system operations happening
// so that you can create a virtual file system with all of the required files.
-var PGO = 0; // Profile-guided optimization.
- // When run with the CHECK_* options, will not fail on errors. Instead, will
- // keep a record of which checks succeeded and which failed. On shutdown, will
- // print out that information. This is useful for knowing which lines need
- // checking enabled and which do not, that is, this is a way to automate the
- // generation of line data for CORRECT_*_LINES options.
- // All CORRECT_* options default to 1 with PGO builds.
- // See https://github.com/kripken/emscripten/wiki/Optimizing-Code for more info
-
var NAMED_GLOBALS = 0; // If 1, we use global variables for globals. Otherwise
// they are referred to by a base plus an offset (called an indexed global),
// saving global variables but adding runtime overhead.