Skip to content

Commit 2b63c0f

Browse files
committed
Addressing review feedback
1 parent b3e9c10 commit 2b63c0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Transforms/RemoveDeadValues.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ static SmallVector<OpOperand *> operandsToOpOperands(OperandRange operands) {
172172
/// iff it has no memory effects and none of its results are live.
173173
///
174174
/// It is assumed that `op` is simple. Here, a simple op is one which isn't a
175-
/// symbol op, a symbol-user op, a region branch op, a branch op, a region
175+
/// function-like op, a call-like op, a region branch op, a branch op, a region
176176
/// branch terminator op, or return-like.
177177
static void cleanSimpleOp(Operation *op, RunLivenessAnalysis &la) {
178178
if (!isMemoryEffectFree(op) || hasLive(op->getResults(), la))

0 commit comments

Comments
 (0)