Skip to content

Commit 57f6fd0

Browse files
committed
[JITLink] Fix typo in debugging output.
1 parent 60eb06b commit 57f6fd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/ExecutionEngine/JITLink/TableManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ template <typename TableManagerImplT> class TableManager {
3838
if (EntryI == Entries.end()) {
3939
auto &Entry = impl().createEntry(G, Target);
4040
DEBUG_WITH_TYPE("jitlink", {
41-
dbgs() << " Created" << impl().getSectionName() << "entry for "
41+
dbgs() << " Created " << impl().getSectionName() << "entry for "
4242
<< Target.getName() << ": " << Entry << "\n";
4343
});
4444
EntryI = Entries.insert(std::make_pair(Target.getName(), &Entry)).first;

0 commit comments

Comments
 (0)