Skip to content

Commit 6862233

Browse files
authored
[LangRef] Add aligned attribute description into masked.compress/expandload sections. (#83808)
Align attribute has already been used for masked.compress/expandload in commit #83519, #83763 and #83516.
1 parent 690bf64 commit 6862233

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

llvm/docs/LangRef.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24276,6 +24276,9 @@ Arguments:
2427624276

2427724277
The first operand is the base pointer for the load. It has the same underlying type as the element of the returned vector. The second operand, mask, is a vector of boolean values with the same number of elements as the return type. The third is a pass-through value that is used to fill the masked-off lanes of the result. The return type and the type of the '``passthru``' operand have the same vector type.
2427824278

24279+
The :ref:`align <attr_align>` parameter attribute can be provided for the first
24280+
operand. The pointer alignment defaults to 1.
24281+
2427924282
Semantics:
2428024283
""""""""""
2428124284

@@ -24333,6 +24336,8 @@ Arguments:
2433324336

2433424337
The first operand is the input vector, from which elements are collected and written to memory. The second operand is the base pointer for the store, it has the same underlying type as the element of the input vector operand. The third operand is the mask, a vector of boolean values. The mask and the input vector must have the same number of vector elements.
2433524338

24339+
The :ref:`align <attr_align>` parameter attribute can be provided for the second
24340+
operand. The pointer alignment defaults to 1.
2433624341

2433724342
Semantics:
2433824343
""""""""""

0 commit comments

Comments
 (0)