From 0dab8853d60e2e61a749b93056faae35e7ec6ce6 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Mon, 6 Jan 2020 16:01:38 -0800 Subject: DCE at the end of wasm2js (#2574) By doing so we ensure that our calls to convert wasm types to JS types never try to convert an unreachable. Fixes #2558 --- test/wasm2js/excess_fallthrough.2asm.js | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) (limited to 'test/wasm2js/excess_fallthrough.2asm.js') diff --git a/test/wasm2js/excess_fallthrough.2asm.js b/test/wasm2js/excess_fallthrough.2asm.js index e5c4bcd1a..e8b9352bd 100644 --- a/test/wasm2js/excess_fallthrough.2asm.js +++ b/test/wasm2js/excess_fallthrough.2asm.js @@ -26,22 +26,20 @@ function asmFunc(global, env, buffer) { function foo($0) { $0 = $0 | 0; - label$4 : while (1) { - label$5 : { - bar(); - block : { - switch (123 | 0) { - case 0: - bar(); - break; - default: - break label$5; - }; - } - return; + label$5 : { + bar(); + block : { + switch (123 | 0) { + case 0: + bar(); + break; + default: + break label$5; + }; } - abort(); - }; + return; + } + abort(); } var FUNCTION_TABLE = []; -- cgit v1.2.3