diff options
Diffstat (limited to 'test/wasm2js')
-rw-r--r-- | test/wasm2js/br_table_to_loop.2asm.js.opt | 2 | ||||
-rw-r--r-- | test/wasm2js/i64-ctz.2asm.js.opt | 2 | ||||
-rw-r--r-- | test/wasm2js/stack-modified.2asm.js.opt | 2 | ||||
-rw-r--r-- | test/wasm2js/unary-ops.2asm.js.opt | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/test/wasm2js/br_table_to_loop.2asm.js.opt b/test/wasm2js/br_table_to_loop.2asm.js.opt index 47e7dbea3..c1151d7ae 100644 --- a/test/wasm2js/br_table_to_loop.2asm.js.opt +++ b/test/wasm2js/br_table_to_loop.2asm.js.opt @@ -22,7 +22,7 @@ function asmFunc(global, env, buffer) { var nan = global.NaN; var infinity = global.Infinity; function $0() { - loop : while (1) continue; + while (1) continue; } function $1() { diff --git a/test/wasm2js/i64-ctz.2asm.js.opt b/test/wasm2js/i64-ctz.2asm.js.opt index d0a3c79a6..b16724295 100644 --- a/test/wasm2js/i64-ctz.2asm.js.opt +++ b/test/wasm2js/i64-ctz.2asm.js.opt @@ -57,7 +57,7 @@ function asmFunc(global, env, buffer) { function __wasm_popcnt_i64($0, $1) { var $2 = 0, $3 = 0, $4 = 0, $5 = 0; - label$2 : while (1) { + while (1) { $5 = $3; $2 = $4; if ($0 | $1) { diff --git a/test/wasm2js/stack-modified.2asm.js.opt b/test/wasm2js/stack-modified.2asm.js.opt index d7e96092d..e5f8da820 100644 --- a/test/wasm2js/stack-modified.2asm.js.opt +++ b/test/wasm2js/stack-modified.2asm.js.opt @@ -30,7 +30,7 @@ function asmFunc(global, env, buffer) { var $2 = 0, $3 = 0, $4 = 0; $2 = $1; $3 = 1; - label$2 : while (1) { + while (1) { if ($0_1 | $2) { $3 = _ZN17compiler_builtins3int3mul3Mul3mul17h070e9a1c69faec5bE($0_1, $2, $3, $4); $4 = i64toi32_i32$HIGH_BITS; diff --git a/test/wasm2js/unary-ops.2asm.js.opt b/test/wasm2js/unary-ops.2asm.js.opt index 5a280d8e4..55b1155a2 100644 --- a/test/wasm2js/unary-ops.2asm.js.opt +++ b/test/wasm2js/unary-ops.2asm.js.opt @@ -98,7 +98,7 @@ function asmFunc(global, env, buffer) { function __wasm_popcnt_i32($0) { var $1_1 = 0, $2 = 0; - label$2 : while (1) { + while (1) { $2 = $1_1; if ($0) { $0 = $0 - 1 & $0; @@ -112,7 +112,7 @@ function asmFunc(global, env, buffer) { function __wasm_popcnt_i64($0, $1_1) { var $2 = 0, $3 = 0, $4 = 0, $5 = 0; - label$2 : while (1) { + while (1) { $5 = $3; $2 = $4; if ($0 | $1_1) { |