mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-08 02:18:43 +00:00
[mlir] [NFC] Add a newline to debug message at inserting of InterfaceMap
At inserting of InterfaceMap, a debug message lacked a newline, so it repeatedly displayed this message within a single line. Clean up the debug log by inserting a newline at the end of the message. Reviewed By: rriddle Differential Revision: https://reviews.llvm.org/D150182
This commit is contained in:
parent
d70573b18e
commit
891fad0448
@ -25,7 +25,7 @@ void detail::InterfaceMap::insert(TypeID interfaceId, void *conceptImpl) {
|
||||
return compare(it.first, id);
|
||||
});
|
||||
if (it != interfaces.end() && it->first == interfaceId) {
|
||||
LLVM_DEBUG(llvm::dbgs() << "Ignoring repeated interface registration");
|
||||
LLVM_DEBUG(llvm::dbgs() << "Ignoring repeated interface registration\n");
|
||||
free(conceptImpl);
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user