Skip to content

Commit

Permalink
Remove use of combiner-alias-analysis flag from wasm backend's llc
Browse files Browse the repository at this point in the history
The flag has been removed from llc upstream in
https://reviews.llvm.org/D14834
  • Loading branch information
dschuff committed Dec 9, 2016
1 parent 84d15f1 commit 5387c1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emscripten.py
Original file line number Diff line number Diff line change
Expand Up @@ -1329,7 +1329,7 @@ def emscript_wasm_backend(infile, settings, outfile, libraries=None, compiler_en
'-o', temp_s]
backend_args += ['-thread-model=single'] # no threads support in backend, tell llc to not emit atomics
# disable slow and relatively unimportant optimization passes
backend_args += ['-combiner-alias-analysis=false', '-combiner-global-alias-analysis=false']
backend_args += ['-combiner-global-alias-analysis=false']

# asm.js-style exception handling
if settings['DISABLE_EXCEPTION_CATCHING'] != 1:
Expand Down

0 comments on commit 5387c1e

Please sign in to comment.