diff options
author | Alon Zakai <azakai@mozilla.com> | 2010-12-19 17:30:02 -0800 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2010-12-19 17:30:02 -0800 |
commit | c244ee875744ad62774c75548461325492799990 (patch) | |
tree | 16ce3d827ba7f009b07975f867c2eb8eb0ff9cb5 | |
parent | c3b6b871d66e3d52cd6cdf7a0149c3153c29c8a9 (diff) |
don't use typed arrays in benchmarks for now - faster that way
-rw-r--r-- | tests/runner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 23d826ae..4739f29d 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -1438,7 +1438,8 @@ else: #JS_ENGINE = V8_ENGINE QUANTUM_SIZE = 4 - RELOOP = OPTIMIZE = USE_TYPED_ARRAYS = 1 + RELOOP = OPTIMIZE = 1 + USE_TYPED_ARRAYS = 0 GUARD_MEMORY = SAFE_HEAP = CHECK_OVERFLOWS = 0 LLVM_OPTS = 1 |