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 8a5aca2 commit 5153af3Copy full SHA for 5153af3
mlir/lib/Dialect/Bufferization/Transforms/OneShotModuleBufferize.cpp
@@ -456,12 +456,12 @@ LogicalResult mlir::bufferization::bufferizeModuleOp(
456
457
if (failed(getFuncOpsOrderedByCalls(moduleOp, orderedFuncOps, callerMap)))
458
return failure();
459
- SmallVector<FunctionOpInterface> ops;
460
461
// Bufferize functions.
462
for (FunctionOpInterface funcOp : orderedFuncOps) {
463
// Note: It would be good to apply cleanups here but we cannot as aliasInfo
464
// would be invalidated.
+
465
if (llvm::is_contained(options.noAnalysisFuncFilter, funcOp.getName())) {
466
// This function was not analyzed and RaW conflicts were not resolved.
467
// Buffer copies must be inserted before every write.
0 commit comments