We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 966991a commit f307e49Copy full SHA for f307e49
mlir/lib/Dialect/Vector/Transforms/VectorTransferOpTransforms.cpp
@@ -107,8 +107,8 @@ Value skipFullyAliasingOperations(Value source) {
107
return source;
108
}
109
110
-/// Checks if two (memref) values are are the same, or are statically known to
111
-/// alias the same region of memory.
+/// Checks if two (memref) values are the same or are statically known to alias
+/// the same region of memory.
112
bool isSameViewOrTrivialAlias(Value a, Value b) {
113
return skipFullyAliasingOperations(a) == skipFullyAliasingOperations(b);
114
0 commit comments