Skip to content

Commit d579013

Browse files
Attempt to fix Windows build error.
1 parent bc202a5 commit d579013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/lib/Interfaces/TilingInterface/TestTilingInterfaceTransformOps.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ static LogicalResult applyTilingToAll(
281281
cast<scf::ForallOp>(tiledResults->loops[0]).getRank() == numLoops &&
282282
"Mismatched number of loops, tile and fuse transform should have "
283283
"failed");
284-
loopOps[0].push_back({tiledResults->loops[0]});
284+
loopOps[0] = {tiledResults->loops[0]};
285285
}
286286

287287
transformResults.set(transformOp->getOpResult(0), tiledLinalgOps);

0 commit comments

Comments
 (0)