[Mlir-commits] [mlir] [MLIR][RemoveDeadValues] Mark arguments of a public function Live (PR #160242)
Mehdi Amini
llvmlistbot at llvm.org
Tue Sep 23 11:15:09 PDT 2025
================
@@ -376,6 +383,31 @@ static void processFuncOp(FunctionOpInterface funcOp, Operation *module,
}
}
+static void processCallOp(CallOpInterface callOp, Operation *module,
+ RunLivenessAnalysis &la,
+ DenseSet<Value> &liveSet) {
+ auto callable = callOp.getCallableForCallee();
----------------
joker-eph wrote:
We should not do this when the analysis is not inter procedural, instead should just mark things live and return.
https://github.com/llvm/llvm-project/pull/160242
More information about the Mlir-commits
mailing list