Skip to content

Commit a4c58f0

Browse files
committed
nfc, refine the comments
1 parent a65ea7d commit a4c58f0

File tree

1 file changed

+3
-3
lines changed
  • llvm/lib/Transforms/Vectorize

1 file changed

+3
-3
lines changed

llvm/lib/Transforms/Vectorize/VPlan.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2437,9 +2437,9 @@ class LLVM_ABI_FOR_TEST VPBlendRecipe : public VPSingleDefRecipe {
24372437
};
24382438

24392439
/// A common base class for interleaved memory operations.
2440-
/// Interleaved memory operation is a memory access method that combines
2440+
/// An Interleaved memory operation is a memory access method that combines
24412441
/// multiple strided loads/stores into a single wide load/store with shuffles.
2442-
/// The first operand must be the address. The optional operands are, in order,
2442+
/// The first operand is the start address. The optional operands are, in order,
24432443
/// the stored values and the mask.
24442444
class LLVM_ABI_FOR_TEST VPInterleaveBase : public VPRecipeBase,
24452445
public VPIRMetadata {
@@ -2577,7 +2577,7 @@ class LLVM_ABI_FOR_TEST VPInterleaveRecipe final : public VPInterleaveBase {
25772577
}
25782578
};
25792579

2580-
/// A recipe for interleaved access operations with vector-predication
2580+
/// A recipe for interleaved memory operations with vector-predication
25812581
/// intrinsics. The first operand is the address, the second operand is the
25822582
/// explicit vector length. Stored values and mask are optional operands.
25832583
class LLVM_ABI_FOR_TEST VPInterleaveEVLRecipe final : public VPInterleaveBase {

0 commit comments

Comments
 (0)