diff options
author | Max Graey <maxgraey@gmail.com> | 2022-08-30 20:43:25 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 10:43:25 -0700 |
commit | e50ef7fa62425fb6687932af393fb86589ca5ac0 (patch) | |
tree | 4148d98b7358cec555e3627b393b6388ae5e0b2c | |
parent | 272330a0d20a4adbe5012dee16b7ba972ebb397a (diff) | |
download | binaryen-e50ef7fa62425fb6687932af393fb86589ca5ac0.tar.gz binaryen-e50ef7fa62425fb6687932af393fb86589ca5ac0.tar.bz2 binaryen-e50ef7fa62425fb6687932af393fb86589ca5ac0.zip |
Fix test comments (#4992)
Followup to #4282
-rw-r--r-- | test/lit/passes/optimize-instructions.wast | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lit/passes/optimize-instructions.wast b/test/lit/passes/optimize-instructions.wast index b7b6b810f..3c9cfb2be 100644 --- a/test/lit/passes/optimize-instructions.wast +++ b/test/lit/passes/optimize-instructions.wast @@ -1774,7 +1774,7 @@ (local.get $y) (i64.const 9223372036854775806) )) - ;; (unsigned)x <= u_max - 1 ==> x == u_max + ;; (unsigned)x <= u_max - 1 ==> x != u_max (drop (i32.le_u (local.get $x) (i32.const -2) @@ -1783,7 +1783,7 @@ (local.get $y) (i64.const -2) )) - ;; (unsigned)x > u_max - 1 ==> x != u_max + ;; (unsigned)x > u_max - 1 ==> x == u_max (drop (i32.gt_u (local.get $x) (i32.const -2) |