Skip to content

Commit 0fae453

Browse files
authored
[LangRef] Fix mistake in example (#84849)
1 parent 8bda565 commit 0fae453

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/docs/LangRef.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27553,12 +27553,12 @@ in example below:
2755327553
.. code-block:: text
2755427554

2755527555
%cond = call i1 @llvm.experimental.widenable.condition()
27556-
br i1 %cond, label %solution_1, label %solution_2
27556+
br i1 %cond, label %fast_path, label %slow_path
2755727557

27558-
label %fast_path:
27558+
fast_path:
2755927559
; Apply memory-consuming but fast solution for a task.
2756027560

27561-
label %slow_path:
27561+
slow_path:
2756227562
; Cheap in memory but slow solution.
2756327563

2756427564
Whether the result of intrinsic's call is `true` or `false`,

0 commit comments

Comments
 (0)