diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-07-04 12:50:37 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-07-04 12:50:37 -0700 |
commit | 1efbaae03148633014f6d62ed2b3132c5ec5d6c0 (patch) | |
tree | ff2ab024afc0249d077db6e3b10db9269895a42a /tools/js-optimizer.js | |
parent | 6335ad37c27d21780e3b4c25698db1282415a4d0 (diff) |
pass the eliminator the filename to avoid OS-specific issues with reading from stdin using node
Diffstat (limited to 'tools/js-optimizer.js')
-rw-r--r-- | tools/js-optimizer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/js-optimizer.js b/tools/js-optimizer.js index 2f6b2ff3..29887e62 100644 --- a/tools/js-optimizer.js +++ b/tools/js-optimizer.js @@ -1312,7 +1312,7 @@ function registerize(ast) { } getStatements(fun).unshift(['var', vars]); } - printErr(fun[1] + ': saved ' + saved + ' / ' + (saved + nextReg - 1) + ' vars through registerization'); // not totally accurate + //printErr(fun[1] + ': saved ' + saved + ' / ' + (saved + nextReg - 1) + ' vars through registerization'); // not totally accurate }); } |