diff options
Diffstat (limited to 'test/wasm2js.traps.js')
-rw-r--r-- | test/wasm2js.traps.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/wasm2js.traps.js b/test/wasm2js.traps.js index 81b3c8b74..756e97b58 100644 --- a/test/wasm2js.traps.js +++ b/test/wasm2js.traps.js @@ -27,7 +27,7 @@ } function i64Equal(actual_lo, actual_hi, expected_lo, expected_hi) { - return actual_lo == (expected_lo | 0) && actual_hi == (expected_hi | 0); + return (actual_lo | 0) == (expected_lo | 0) && (actual_hi | 0) == (expected_hi | 0); } function asmFunc0(global, env, buffer) { |