From eaa7240105811ffa565dc97768f1399e7855744b Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Tue, 7 Apr 2020 11:59:29 -0700 Subject: 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. --- scripts/test/lld.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts/test') 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 -- cgit v1.2.3