diff options
author | Max Graey <maxgraey@gmail.com> | 2020-10-31 01:06:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 16:06:30 -0700 |
commit | 45f808c58c752b1b146b71b9d6e9e30758a808c2 (patch) | |
tree | eff7856c5e811904bf5064f8b853b3bcb3652af5 /test/wasm2js/unary-ops.2asm.js.opt | |
parent | ebaddfbd09359a9de6424e0c302255b8f8caf6f6 (diff) | |
download | binaryen-45f808c58c752b1b146b71b9d6e9e30758a808c2.tar.gz binaryen-45f808c58c752b1b146b71b9d6e9e30758a808c2.tar.bz2 binaryen-45f808c58c752b1b146b71b9d6e9e30758a808c2.zip |
Canonicalize relationals as well (#3303)
Diffstat (limited to 'test/wasm2js/unary-ops.2asm.js.opt')
-rw-r--r-- | test/wasm2js/unary-ops.2asm.js.opt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/wasm2js/unary-ops.2asm.js.opt b/test/wasm2js/unary-ops.2asm.js.opt index 8922b6fb7..9bda50800 100644 --- a/test/wasm2js/unary-ops.2asm.js.opt +++ b/test/wasm2js/unary-ops.2asm.js.opt @@ -80,7 +80,7 @@ function asmFunc(global, env) { $0 = Math_clz32($1_1 ^ $3); $0 = ($0 | 0) == 32 ? $2 : $0; $1_1 = 63 - $0 | 0; - i64toi32_i32$HIGH_BITS = 0 - (63 < $0 >>> 0) | 0; + i64toi32_i32$HIGH_BITS = 0 - ($0 >>> 0 > 63) | 0; return $1_1; } i64toi32_i32$HIGH_BITS = 0; |