diff options
author | Alon Zakai <azakai@google.com> | 2020-04-07 11:59:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 11:59:29 -0700 |
commit | eaa7240105811ffa565dc97768f1399e7855744b (patch) | |
tree | 2a7a8897d5d139013a891f6fe687d167b8706584 /scripts | |
parent | ac8b0b71219a1c96d3dab4c9eeddbb4c8401cd1d (diff) | |
download | binaryen-eaa7240105811ffa565dc97768f1399e7855744b.tar.gz binaryen-eaa7240105811ffa565dc97768f1399e7855744b.tar.bz2 binaryen-eaa7240105811ffa565dc97768f1399e7855744b.zip |
JS/Wasm BigInt support for wasm-emscripten-finalize (#2726)
If wasm-emscripten-finalize is given the BigInt flag, then we will
be using BigInts on the JS side, and need no legalization at all
since i64s will just be BigInts.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/test/lld.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/test/lld.py b/scripts/test/lld.py index cdbb2878d..9323dded6 100755 --- a/scripts/test/lld.py +++ b/scripts/test/lld.py @@ -26,6 +26,8 @@ def args_for_finalize(filename): ret += ['--side-module'] if 'standalone-wasm' in filename: ret += ['--standalone-wasm'] + if 'bigint' in filename: + ret += ['--bigint'] return ret |