[llvm] [LangRef] fix non-existant `icmp gte` -> `icmp sge` (PR #149420)
Florian Mayer via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 17 15:53:23 PDT 2025
https://github.com/fmayer created https://github.com/llvm/llvm-project/pull/149420
None
>From 5fba3cba3f7a8ed39edbf37190f03e5e435a2e62 Mon Sep 17 00:00:00 2001
From: Florian Mayer <fmayer at google.com>
Date: Thu, 17 Jul 2025 15:53:11 -0700
Subject: [PATCH] =?UTF-8?q?[=F0=9D=98=80=F0=9D=97=BD=F0=9D=97=BF]=20initia?=
=?UTF-8?q?l=20version?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Created using spr 1.3.4
---
llvm/docs/LangRef.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 2759e18301d58..371f356c80b0a 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -4867,7 +4867,7 @@ to be eliminated. This is because '``poison``' is stronger than '``undef``'.
%D = undef
%E = icmp slt %D, 4
- %F = icmp gte %D, 4
+ %F = icmp sge %D, 4
Safe:
%A = undef
More information about the llvm-commits
mailing list