diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-19 16:42:35 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-19 16:42:35 -0700 |
commit | 8215a28597a464489d4678aa57cdccef80f427df (patch) | |
tree | 89b83a3b4d04295f40086fb9050fdbb819677e03 /tools/js-optimizer.js | |
parent | 06665ab130347fa69709f92f1174518998cfb29b (diff) |
fix bug with reducing f()|0|const
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 862b39eb..b02ae3cc 100644 --- a/tools/js-optimizer.js +++ b/tools/js-optimizer.js @@ -459,7 +459,7 @@ function simplifyExpressionsPre(ast) { go = true; } if (!go) { - stack.push(2); + stack.push(1); return; } // We might be able to remove this correction |