Skip to content

Commit 703068c

Browse files
committed
Fix comment
1 parent f2aa501 commit 703068c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11877,7 +11877,7 @@ SDValue DAGCombiner::visitMSTORE(SDNode *N) {
1187711877
SDValue DAGCombiner::visitVP_STRIDED_STORE(SDNode *N) {
1187811878
auto *SST = cast<VPStridedStoreSDNode>(N);
1187911879
EVT EltVT = SST->getValue().getValueType().getVectorElementType();
11880-
// Combine strided loads with unit-stride to a regular load.
11880+
// Combine strided stores with unit-stride to a regular VP store.
1188111881
if (auto *CStride = dyn_cast<ConstantSDNode>(SST->getStride());
1188211882
CStride && CStride->getZExtValue() == EltVT.getStoreSize()) {
1188311883
return DAG.getStoreVP(SST->getChain(), SDLoc(N), SST->getValue(),

0 commit comments

Comments
 (0)