[JITLink] Fix typo in debugging output.

This commit is contained in:
Lang Hames 2022-09-27 08:37:15 -07:00
parent 60eb06be6d
commit 57f6fd0a34
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ public:
if (EntryI == Entries.end()) {
auto &Entry = impl().createEntry(G, Target);
DEBUG_WITH_TYPE("jitlink", {
dbgs() << " Created" << impl().getSectionName() << "entry for "
dbgs() << " Created " << impl().getSectionName() << "entry for "
<< Target.getName() << ": " << Entry << "\n";
});
EntryI = Entries.insert(std::make_pair(Target.getName(), &Entry)).first;