Skip to content

Commit e50ef7f

Browse files
authored
Fix test comments (#4992)
Followup to #4282
1 parent 272330a commit e50ef7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/lit/passes/optimize-instructions.wast

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1774,7 +1774,7 @@
17741774
(local.get $y)
17751775
(i64.const 9223372036854775806)
17761776
))
1777-
;; (unsigned)x <= u_max - 1 ==> x == u_max
1777+
;; (unsigned)x <= u_max - 1 ==> x != u_max
17781778
(drop (i32.le_u
17791779
(local.get $x)
17801780
(i32.const -2)
@@ -1783,7 +1783,7 @@
17831783
(local.get $y)
17841784
(i64.const -2)
17851785
))
1786-
;; (unsigned)x > u_max - 1 ==> x != u_max
1786+
;; (unsigned)x > u_max - 1 ==> x == u_max
17871787
(drop (i32.gt_u
17881788
(local.get $x)
17891789
(i32.const -2)

0 commit comments

Comments
 (0)