[llvm] [LangRef] Fix mistake in example (PR #84849)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 11 16:32:28 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-ir
Author: Vitaly Buka (vitalybuka)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/84849.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 77ec72f176d6ed..d613ceea8654f8 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -27553,7 +27553,7 @@ in example below:
.. code-block:: text
%cond = call i1 @llvm.experimental.widenable.condition()
- br i1 %cond, label %solution_1, label %solution_2
+ br i1 %cond, label %fast_path, label %slow_path
label %fast_path:
; Apply memory-consuming but fast solution for a task.
``````````
</details>
https://github.com/llvm/llvm-project/pull/84849
More information about the llvm-commits
mailing list