diff options
Diffstat (limited to 'test/empty_table.2asm.js')
-rw-r--r-- | test/empty_table.2asm.js | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/test/empty_table.2asm.js b/test/empty_table.2asm.js index 70e17ea9d..b3f981530 100644 --- a/test/empty_table.2asm.js +++ b/test/empty_table.2asm.js @@ -14,28 +14,27 @@ function asmFunc(global, env, buffer) { var Math_clz32 = global.Math.clz32; function __wasm_ctz_i32(x) { x = x | 0; - var wasm2asm_i32$0 = 0; - if ((x | 0) == (0 | 0)) wasm2asm_i32$0 = 32; else wasm2asm_i32$0 = 31 - Math_clz32(x ^ (x - 1 | 0) | 0) | 0; - return wasm2asm_i32$0 | 0; + var $$1 = 0; + if ((x | 0) == (0 | 0)) $$1 = 32; else $$1 = 31 - Math_clz32(x ^ (x - 1 | 0) | 0) | 0; + return $$1 | 0; } function __wasm_popcnt_i32(x) { x = x | 0; - var count = 0, wasm2asm_i32$0 = 0; + var count = 0, $$2 = 0, $$3 = 0; count = 0; b : { l : do { - if ((x | 0) == (0 | 0)) { - wasm2asm_i32$0 = count; - break b; - } + $$2 = count; + if ((x | 0) == (0 | 0)) break b; x = x & (x - 1 | 0) | 0; count = count + 1 | 0; continue l; break l; } while (1); }; - return wasm2asm_i32$0 | 0; + $$3 = $$2; + return $$3 | 0; } function __wasm_rotl_i32(x, k) { |