aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xemcc6
-rwxr-xr-xtests/runner.py1
2 files changed, 0 insertions, 7 deletions
diff --git a/emcc b/emcc
index a224a71d..b8e2489c 100755
--- a/emcc
+++ b/emcc
@@ -584,12 +584,6 @@ try:
if DEBUG: save_intermediate('dce', 'bc')
# Prepare .ll for Emscripten
- try:
- if shared.Settings.RELOOP:
- print >> sys.stderr, 'emcc: warning: The relooper optimization can be very slow.'
- except:
- pass
-
if not LEAVE_INPUTS_RAW:
final = shared.Building.llvm_dis(final, final + '.ll')
else:
diff --git a/tests/runner.py b/tests/runner.py
index 311c8d21..aaa9cf69 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -5545,7 +5545,6 @@ Options that are modified or new in %s include:
assert os.path.exists('something.bc'), output[1]
output = Popen([compiler, 'something.bc', '-o', 'something.js'] + bc_params, stdout=PIPE, stderr=PIPE).communicate()
assert os.path.exists('something.js'), output[1]
- assert ('warning: The relooper optimization can be very slow.' in output[1]) == (opt_level >= 2), 'relooper warning should appear in opt >= 2'
assert ('Warning: Applying some potentially unsafe optimizations!' in output[1]) == (opt_level >= 3), 'unsafe warning should appear in opt >= 3'
self.assertContained('hello, world!', run_js('something.js'))