[Mlir-commits] [mlir] [MLIR][RemoveDeadValues] Mark arguments of a public function Live (PR #160242)
Mehdi Amini
llvmlistbot at llvm.org
Thu Sep 25 02:51:29 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:
Here is an example of a fix where I detected whether we're working on a symbol table or not: 13ae9ea4d66b53d836c465c4330e3ccdba0d01d0
https://github.com/llvm/llvm-project/pull/160242
More information about the Mlir-commits
mailing list