diff options
Diffstat (limited to 'test/wasm2js/float-ops.2asm.js.opt')
-rw-r--r-- | test/wasm2js/float-ops.2asm.js.opt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/wasm2js/float-ops.2asm.js.opt b/test/wasm2js/float-ops.2asm.js.opt index 7f19a7a31..7e3413736 100644 --- a/test/wasm2js/float-ops.2asm.js.opt +++ b/test/wasm2js/float-ops.2asm.js.opt @@ -236,12 +236,12 @@ function asmFunc(global, env, buffer) { function $41($0) { $0 = Math_fround($0); - return ~~$0 >>> 0; + return ~~$0 >>> 0 | 0; } function $42($0) { $0 = +$0; - return ~~$0 >>> 0; + return ~~$0 >>> 0 | 0; } function $47($0) { |