summaryrefslogtreecommitdiff
path: root/test/wasm2js/i64-shifts.2asm.js.opt
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2019-05-13 16:55:06 -0700
committerGitHub <noreply@github.com>2019-05-13 16:55:06 -0700
commitb4eb90ce9bc43d9f3897bd13d6fd11f40f706b5a (patch)
tree0b3b5f9b8974dea18ace6b059e1729635a8ff571 /test/wasm2js/i64-shifts.2asm.js.opt
parent67019f9a72175bc7a098d72aa14a6f6afeb2efce (diff)
downloadbinaryen-b4eb90ce9bc43d9f3897bd13d6fd11f40f706b5a.tar.gz
binaryen-b4eb90ce9bc43d9f3897bd13d6fd11f40f706b5a.tar.bz2
binaryen-b4eb90ce9bc43d9f3897bd13d6fd11f40f706b5a.zip
wasm2js: precompute bitwise operations (#2101)
This happens on e.g. an i32 load of a constant offset, then we have constant >> 2.
Diffstat (limited to 'test/wasm2js/i64-shifts.2asm.js.opt')
-rw-r--r--test/wasm2js/i64-shifts.2asm.js.opt4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/wasm2js/i64-shifts.2asm.js.opt b/test/wasm2js/i64-shifts.2asm.js.opt
index 0cb2501e7..f9844a810 100644
--- a/test/wasm2js/i64-shifts.2asm.js.opt
+++ b/test/wasm2js/i64-shifts.2asm.js.opt
@@ -28,7 +28,7 @@ function asmFunc(global, env, buffer) {
$4 = $4 | 0;
var $5 = 0;
$5 = $2_1 & 31;
- if (32 >>> 0 <= ($2_1 & 63) >>> 0) {
+ if (32 <= ($2_1 & 63) >>> 0) {
$1_1 = $0 << $5;
$0 = 0;
} else {
@@ -46,7 +46,7 @@ function asmFunc(global, env, buffer) {
$4 = $4 | 0;
var $5 = 0;
$5 = $2_1 & 31;
- if (32 >>> 0 <= ($2_1 & 63) >>> 0) {
+ if (32 <= ($2_1 & 63) >>> 0) {
$2_1 = $1_1 >> 31;
$0 = $1_1 >> $5;
} else {