Skip to content

Commit 249b585

Browse files
committed
fixup! other doc fix I forgot to make.
1 parent cbf0bb0 commit 249b585

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

llvm/docs/LangRef.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23983,11 +23983,11 @@ Semantics:
2398323983
The '``llvm.experimental.vp.load.ff``' is designed for reading vector lanes in a single
2398423984
IR operation where the number of lanes that can be read is not known and can
2398523985
only be determined by looking at the data. This is useful for vectorizing
23986-
strcmp or strlen like loops where the data contains a null terminator. This is
23987-
useful for targets that have a fault-only-first load instruction. Other targets
23988-
may support this intrinsic differently, for example by lowering to a single
23989-
scalar load guarded by ``evl!=0`` and ``mask[0]==1`` and indicating only 1
23990-
lane could be read.
23986+
strcmp or strlen like loops where the data contains a null terminator. Some
23987+
targets have a fault-only-first load instruction that this intrinsic can be
23988+
lowered to. Other targets may support this intrinsic differently, for example by
23989+
lowering to a single scalar load guarded by ``evl!=0`` and ``mask[0]==1`` and
23990+
indicating only 1 lane could be read.
2399123991

2399223992
Like '``llvm.vp.load``', this intrinsic reads memory based on a ``mask`` and an
2399323993
``evl``. If ``evl`` is non-zero and the first lane is masked-on, then the

0 commit comments

Comments
 (0)