Skip to content

Commit da4958a

Browse files
authored
[MLIR] Add a missing newline to debug output. NFC (#141531)
Before: ``` ** Erase : 'scf.yield'(0x6000037b1630) ** Insert Block into detached Region (nullptr parent op)' ** Insert Block into detached Region (nullptr parent op)' ** Insert : 'scf.if'(0x6000025b8140) ** Erase : 'scf.if'(0x600003ab0780) ``` After: ``` ** Erase : 'scf.yield'(0x600003128b90) ** Insert Block into detached Region (nullptr parent op)' ** Insert Block into detached Region (nullptr parent op)' ** Insert : 'scf.if'(0x6000023206e0) ```
1 parent 3c8089d commit da4958a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Transforms/Utils/DialectConversion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1605,7 +1605,7 @@ void ConversionPatternRewriterImpl::notifyBlockInserted(
16051605
<< "'(" << parent << ")\n";
16061606
} else {
16071607
logger.startLine()
1608-
<< "** Insert Block into detached Region (nullptr parent op)'";
1608+
<< "** Insert Block into detached Region (nullptr parent op)'\n";
16091609
}
16101610
});
16111611

0 commit comments

Comments
 (0)