[Mlir-commits] [mlir] [mlir] [dataflow] further optimize dataflow compile time (PR #149804)
Ivan Butygin
llvmlistbot at llvm.org
Wed Jul 23 01:02:01 PDT 2025
Hardcode84 wrote:
You don't need to copy the entire analysis, as your analysis will be derived from the `DenseForwardDataFlowAnalysis` anyway you can do:
```
MyAnalysis::processOperation(Operation *op) {
if (something)
return success()
return DenseForwardDataFlowAnalysis::processOperation(op);
}
```
https://github.com/llvm/llvm-project/pull/149804
More information about the Mlir-commits
mailing list