[Mlir-commits] [mlir] [MLIR] Prevent invalid IR from being passed outside of RemoveDeadValues (PR #121079)
Renat Idrisov
llvmlistbot at llvm.org
Wed Jan 1 11:23:33 PST 2025
================
@@ -617,23 +719,33 @@ void RemoveDeadValues::runOnOperation() {
auto &la = getAnalysis<RunLivenessAnalysis>();
Operation *module = getOperation();
+ // Tracks values eligible for erasure - complements liveness analysis to
+ // identify "droppable" values.
+ DenseSet<Value> deletionSet;
----------------
parsifal-47 wrote:
ok, thank you!
https://github.com/llvm/llvm-project/pull/121079
More information about the Mlir-commits
mailing list