diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-10-02 15:36:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-02 15:36:36 -0700 |
commit | 31ceb6ef95835952097ecc868eff9bdd7fb17d34 (patch) | |
tree | c979be4ab0847bd8b2e1395d7b57a3b5f61addba /auto_update_tests.py | |
parent | 926e4ab3c19c0adc965a3b75d9bd2624a4a2b58f (diff) | |
download | binaryen-31ceb6ef95835952097ecc868eff9bdd7fb17d34.tar.gz binaryen-31ceb6ef95835952097ecc868eff9bdd7fb17d34.tar.bz2 binaryen-31ceb6ef95835952097ecc868eff9bdd7fb17d34.zip |
More wasm-only opts (#727)
* wasm-only loads and stores
* wasm-only 32-bit bitcasts
Diffstat (limited to 'auto_update_tests.py')
-rwxr-xr-x | auto_update_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py index 96969f326..1f3da6813 100755 --- a/auto_update_tests.py +++ b/auto_update_tests.py @@ -22,7 +22,7 @@ for asm in sorted(os.listdir('test')): # test mem init importing open('a.mem', 'wb').write(asm) cmd += ['--mem-init=a.mem'] - if 'i64' in asm: + if 'i64' in asm or 'wasm-only' in asm: cmd += ['--wasm-only'] print '..', asm, wasm print ' ', ' '.join(cmd) |