From 73709b4da08d285c2237c8c23a54ba53274c0c7f Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 1 May 2019 10:43:01 -0700 Subject: wasm2js: run more optimizations (#2073) In particular, coalesce-locals is useful even if closure is run later (apparently it finds stuff closure can't). --- test/wasm2js.traps.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'test/wasm2js.traps.js') diff --git a/test/wasm2js.traps.js b/test/wasm2js.traps.js index 81b3c8b74..47c718df0 100644 --- a/test/wasm2js.traps.js +++ b/test/wasm2js.traps.js @@ -56,16 +56,16 @@ function asmFunc0(global, env, buffer) { } - function $1(x, y) { - x = x | 0; - y = y | 0; - return x + y | 0 | 0; + function $1($0_1, $1_1) { + $0_1 = $0_1 | 0; + $1_1 = $1_1 | 0; + return $0_1 + $1_1 | 0 | 0; } - function $2(x, y) { - x = x | 0; - y = y | 0; - return (x | 0) / (y | 0) | 0 | 0; + function $2($0_1, $1_1) { + $0_1 = $0_1 | 0; + $1_1 = $1_1 | 0; + return ($0_1 | 0) / ($1_1 | 0) | 0 | 0; } var FUNCTION_TABLE = []; -- cgit v1.2.3