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 5928619 commit 7a3fe85Copy full SHA for 7a3fe85
mlir/lib/Rewrite/PatternApplicator.cpp
@@ -37,9 +37,9 @@ PatternApplicator::~PatternApplicator() = default;
37
#ifndef NDEBUG
38
/// Log a message for a pattern that is impossible to match.
39
static void logImpossibleToMatch(const Pattern &pattern) {
40
- llvm::dbgs() << "Ignoring pattern '" << pattern.getRootKind()
41
- << "' because it is impossible to match or cannot lead "
42
- "to legal IR (by cost model)\n";
+ LDBG() << "Ignoring pattern '" << pattern.getRootKind()
+ << "' because it is impossible to match or cannot lead "
+ "to legal IR (by cost model)";
43
}
44
45
/// Log IR after pattern application.
0 commit comments