aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-03-27 10:34:52 -0700
committerAlon Zakai <alonzakai@gmail.com>2014-03-27 10:34:52 -0700
commit422d65dc0603ca7c856e82425adfeee01463d2b0 (patch)
tree9f18a36de2cdbb210af08b00ff281716f9a59e14 /tests
parente01dac87dae70222db7b8c0a8f3301b368f8b67b (diff)
optimize away individual loop vars, even if we can't remove them all
Diffstat (limited to 'tests')
-rw-r--r--tests/test_benchmark.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_benchmark.py b/tests/test_benchmark.py
index 4c39a764..735f0feb 100644
--- a/tests/test_benchmark.py
+++ b/tests/test_benchmark.py
@@ -111,8 +111,7 @@ process(sys.argv[1])
'-O3', '-s', 'DOUBLE_MODE=0', '-s', 'PRECISE_I64_MATH=0',
'--memory-init-file', '0', '--js-transform', 'python hardcode.py',
'-s', 'TOTAL_MEMORY=128*1024*1024',
- #'--closure', '1',
- #'-g2',
+ #'-profiling',
'-o', final] + shared_args + emcc_args + self.extra_args, stdout=PIPE, stderr=PIPE, env=self.env).communicate()
assert os.path.exists(final), 'Failed to compile file: ' + output[0]
self.filename = final