Skip to content

Commit 7e3187e

Browse files
authored
Adding mlir prefix for missing places in TilingInterface.td (#117495)
1 parent f9dca5b commit 7e3187e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/include/mlir/Interfaces/TilingInterface.td

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def TilingInterface : OpInterface<"TilingInterface"> {
6666
/*desc=*/[{
6767
Returns a list of iterator types that describe the number of loops.
6868
}],
69-
/*retType=*/"::mlir::SmallVector<utils::IteratorType>",
69+
/*retType=*/"::mlir::SmallVector<::mlir::utils::IteratorType>",
7070
/*methodName=*/"getLoopIteratorTypes",
7171
/*args=*/(ins),
7272
/*methodBody=*/"",
@@ -353,8 +353,8 @@ def TilingInterface : OpInterface<"TilingInterface"> {
353353
/*methodName=*/"generateScalarImplementation",
354354
/*args=*/(ins
355355
"::mlir::OpBuilder &":$b,
356-
"Location ":$loc,
357-
"ValueRange ":$ivs),
356+
"::mlir::Location ":$loc,
357+
"::mlir::ValueRange ":$ivs),
358358
/*methodBody=*/"",
359359
/*defaultImplementation=*/[{
360360
return failure();

0 commit comments

Comments
 (0)