We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bda565 commit 0fae453Copy full SHA for 0fae453
llvm/docs/LangRef.rst
@@ -27553,12 +27553,12 @@ in example below:
27553
.. code-block:: text
27554
27555
%cond = call i1 @llvm.experimental.widenable.condition()
27556
- br i1 %cond, label %solution_1, label %solution_2
+ br i1 %cond, label %fast_path, label %slow_path
27557
27558
- label %fast_path:
+ fast_path:
27559
; Apply memory-consuming but fast solution for a task.
27560
27561
- label %slow_path:
+ slow_path:
27562
; Cheap in memory but slow solution.
27563
27564
Whether the result of intrinsic's call is `true` or `false`,
0 commit comments