[llvm] [LangRef] fix non-existant `icmp gte` -> `icmp sge` (PR #149420)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 17 15:53:53 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-ir
Author: Florian Mayer (fmayer)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/149420.diff
1 Files Affected:
- (modified) llvm/docs/LangRef.rst (+1-1)
``````````diff
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
``````````
</details>
https://github.com/llvm/llvm-project/pull/149420
More information about the llvm-commits
mailing list