diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-05 22:08:50 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-05 22:08:50 -0800 |
commit | 1585a63c8846eef56b95f076be2ffe2f7e2f15da (patch) | |
tree | 116745d51d66aaaa06e3498a298878dee41fcfb7 /test | |
parent | 5c3a102d7476b2200787aa66a84175bb47862c36 (diff) | |
download | binaryen-1585a63c8846eef56b95f076be2ffe2f7e2f15da.tar.gz binaryen-1585a63c8846eef56b95f076be2ffe2f7e2f15da.tar.bz2 binaryen-1585a63c8846eef56b95f076be2ffe2f7e2f15da.zip |
fix do-while label
Diffstat (limited to 'test')
-rw-r--r-- | test/unit.2asm.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit.2asm.js b/test/unit.2asm.js index b835cca53..6d4df7fff 100644 --- a/test/unit.2asm.js +++ b/test/unit.2asm.js @@ -112,13 +112,13 @@ function asmFunc() { case 8: break label$break$Lout; case 3: - do while_out$10 : { + while_out$10 : do { break while_out$10; continue while_out$10; } while (0); break label$break$Lout; case 0: - do while_out$13 : { + while_out$13 : do { break label$break$Lout; continue while_out$13; } while (0); |