We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a5666e commit ab31647Copy full SHA for ab31647
mlir/lib/Analysis/DataFlow/LivenessAnalysis.cpp
@@ -49,8 +49,8 @@ ChangeResult Liveness::meet(const AbstractSparseLattice &other) {
49
/// For every value, liveness analysis determines whether or not it is "live".
50
///
51
/// A value is considered "live" iff it:
52
-/// (1) has memory effects
53
-/// (2) is returned by a public function
+/// (1) has memory effects OR
+/// (2) is returned by a public function OR
54
/// (3) is used to compute a value of type (1) or (2) OR
55
/// (4) is returned by a return-like op whose parent isn't a callable
56
/// (e.g.: linalg.yield, gpu.yield,...) These ops have their own
0 commit comments