Skip to content

Commit cd1d507

Browse files
committed
LAA: fix nit
1 parent cfb317b commit cd1d507

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

llvm/include/llvm/Analysis/LoopAccessAnalysis.h

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -365,13 +365,15 @@ class MemoryDepChecker {
365365
void mergeInStatus(VectorizationSafetyStatus S);
366366

367367
struct DepDistanceStrideAndSizeInfo {
368-
// Strides could either be scaled (in bytes, taking the size of the
369-
// underlying type into account), or unscaled (in indexing units; unscaled
370-
// stride = scaled stride / size of underlying type). Here, strides are
371-
// unscaled.
372368
const SCEV *Dist;
369+
370+
/// Strides could either be scaled (in bytes, taking the size of the
371+
/// underlying type into account), or unscaled (in indexing units; unscaled
372+
/// stride = scaled stride / size of underlying type). Here, strides are
373+
/// unscaled.
373374
uint64_t MaxStride;
374375
std::optional<uint64_t> CommonStride;
376+
375377
bool ShouldRetryWithRuntimeCheck;
376378
uint64_t TypeByteSize;
377379
bool AIsWrite;

0 commit comments

Comments
 (0)