diff options
Diffstat (limited to 'test/wasm2js/emscripten.2asm.js')
-rw-r--r-- | test/wasm2js/emscripten.2asm.js | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/wasm2js/emscripten.2asm.js b/test/wasm2js/emscripten.2asm.js index 92373170f..79da32b8f 100644 --- a/test/wasm2js/emscripten.2asm.js +++ b/test/wasm2js/emscripten.2asm.js @@ -60,24 +60,24 @@ function asmFunc(global, env, buffer) { return abort() | 0; } - function internal($0) { - $0 = $0 | 0; - return $0 | 0; + function internal(x) { + x = x | 0; + return x | 0; } - function tabled($0) { - $0 = $0 | 0; - return $0 | 0; + function tabled(x) { + x = x | 0; + return x | 0; } - function exported($0) { - $0 = $0 | 0; - return $0 | 0; + function exported(x) { + x = x | 0; + return x | 0; } - function sub_zero($0) { - $0 = $0 | 0; - return $0 - -5 | 0 | 0; + function sub_zero(x) { + x = x | 0; + return x - -5 | 0 | 0; } // EMSCRIPTEN_END_FUNCS; |