[ORC] Fix missing newline in debugging output.

This commit is contained in:
Lang Hames 2021-09-07 21:41:39 +10:00
parent a0a91ed3dd
commit 3828ab086a
1 changed files with 1 additions and 0 deletions

View File

@ -2911,6 +2911,7 @@ void ExecutionSession::dumpDispatchInfo(Task &T) {
runSessionLocked([&]() {
dbgs() << "Dispatching: ";
T.printDescription(dbgs());
dbgs() << "\n";
});
}
#endif // NDEBUG