diff options
author | Heejin Ahn <aheejin@users.noreply.github.com> | 2018-02-07 14:36:56 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-07 14:36:56 -0800 |
commit | 7c4fe0bc095e067c8605f60a66664bd58bac3ac5 (patch) | |
tree | f61db693f26815c2766d957721b051974154a59d /auto_update_tests.py | |
parent | a3232460dd4dc63b0ed39a68f0bebecc805572d4 (diff) | |
download | binaryen-7c4fe0bc095e067c8605f60a66664bd58bac3ac5.tar.gz binaryen-7c4fe0bc095e067c8605f60a66664bd58bac3ac5.tar.bz2 binaryen-7c4fe0bc095e067c8605f60a66664bd58bac3ac5.zip |
Emscripten addFunction support for Wasm backend (#1395)
This adds necessary command line options for addFunction support, and generates required jsCall imports and generates jsCall thunk functions.
Diffstat (limited to 'auto_update_tests.py')
-rwxr-xr-x | auto_update_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py index 050dab1d1..1ec8f23c5 100755 --- a/auto_update_tests.py +++ b/auto_update_tests.py @@ -53,6 +53,7 @@ extension_arg_map = { '.wast': [], '.clamp.wast': ['--trap-mode=clamp'], '.js.wast': ['--trap-mode=js'], + '.jscall.wast': ['--emscripten-reserved-function-pointers=3'], } for dot_s_dir in ['dot_s', 'llvm_autogenerated']: for s in sorted(os.listdir(os.path.join('test', dot_s_dir))): |