Skip to content

Commit 547a49f

Browse files
authored
[LangRef] fix non-existant icmp gte -> icmp sge (#149420)
1 parent 45477ad commit 547a49f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/docs/LangRef.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4867,7 +4867,7 @@ to be eliminated. This is because '``poison``' is stronger than '``undef``'.
48674867

48684868
%D = undef
48694869
%E = icmp slt %D, 4
4870-
%F = icmp gte %D, 4
4870+
%F = icmp sge %D, 4
48714871

48724872
Safe:
48734873
%A = undef

0 commit comments

Comments
 (0)