diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-06 10:48:18 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-06 10:48:18 -0800 |
commit | 34e45ae6426706ae31c4df8e0b36a4d14ea1f682 (patch) | |
tree | 22e18dfd03532ede4fd4c245f1ad3596d70cd609 /check.py | |
parent | 1585a63c8846eef56b95f076be2ffe2f7e2f15da (diff) | |
download | binaryen-34e45ae6426706ae31c4df8e0b36a4d14ea1f682.tar.gz binaryen-34e45ae6426706ae31c4df8e0b36a4d14ea1f682.tar.bz2 binaryen-34e45ae6426706ae31c4df8e0b36a4d14ea1f682.zip |
fix if_else return value in wasm2asm
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ for asm in tests: print '\n[ checking wasm2asm testcases... ]\n' -for wasm in ['min.wast', 'hello_world.wast', 'unit.wast']: +for wasm in ['min.wast', 'hello_world.wast', 'unit.wast', 'emcc_O2_hello_world.wast']: if wasm.endswith('.wast'): print '..', wasm asm = wasm.replace('.wast', '.2asm.js') |