Skip to content

Commit 4a61668

Browse files
committed
[MLIR] Fix pipelineInitializationKey never being correctly updated
1 parent a63bbf2 commit 4a61668

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Pass/Pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ LogicalResult PassManager::run(Operation *op) {
901901
if (failed(initialize(context, impl->initializationGeneration + 1)))
902902
return failure();
903903
initializationKey = newInitKey;
904-
pipelineKey = pipelineInitializationKey;
904+
pipelineInitializationKey = pipelineKey;
905905
}
906906

907907
// Construct a top level analysis manager for the pipeline.

0 commit comments

Comments
 (0)