diff options
author | Alon Zakai <azakai@google.com> | 2020-01-06 16:01:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-06 16:01:38 -0800 |
commit | 0dab8853d60e2e61a749b93056faae35e7ec6ce6 (patch) | |
tree | 6884d42f748e332d7ca3e813d655149b88fdf717 /test/wasm2js/excess_fallthrough.2asm.js | |
parent | 44c3c2d4e71686d42b7eff8ab9c554f83a9fe71e (diff) | |
download | binaryen-0dab8853d60e2e61a749b93056faae35e7ec6ce6.tar.gz binaryen-0dab8853d60e2e61a749b93056faae35e7ec6ce6.tar.bz2 binaryen-0dab8853d60e2e61a749b93056faae35e7ec6ce6.zip |
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
Diffstat (limited to 'test/wasm2js/excess_fallthrough.2asm.js')
-rw-r--r-- | test/wasm2js/excess_fallthrough.2asm.js | 28 |
1 files changed, 13 insertions, 15 deletions
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 = []; |