diff options
Diffstat (limited to 'test/wasm2js/hello_world.2asm.js')
-rw-r--r-- | test/wasm2js/hello_world.2asm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/wasm2js/hello_world.2asm.js b/test/wasm2js/hello_world.2asm.js index e8d54b239..45dc5d7db 100644 --- a/test/wasm2js/hello_world.2asm.js +++ b/test/wasm2js/hello_world.2asm.js @@ -24,7 +24,7 @@ function asmFunc(global, env, buffer) { function add(x, y) { x = x | 0; y = y | 0; - return x + y | 0; + return x + y | 0 | 0; } var FUNCTION_TABLE = []; |