Skip to content

Commit f307e49

Browse files
committed
Fix typo
1 parent 966991a commit f307e49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/Dialect/Vector/Transforms/VectorTransferOpTransforms.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ Value skipFullyAliasingOperations(Value source) {
107107
return source;
108108
}
109109

110-
/// Checks if two (memref) values are are the same, or are statically known to
111-
/// alias the same region of memory.
110+
/// Checks if two (memref) values are the same or are statically known to alias
111+
/// the same region of memory.
112112
bool isSameViewOrTrivialAlias(Value a, Value b) {
113113
return skipFullyAliasingOperations(a) == skipFullyAliasingOperations(b);
114114
}

0 commit comments

Comments
 (0)