Skip to content

Commit d467396

Browse files
committed
[emamples][OrcV2Examples] Fix a missing newline in LLJITRemovableCode output.
1 parent 76f0d18 commit d467396

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/examples/OrcV2Examples/LLJITRemovableCode/LLJITRemovableCode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ int main(int argc, char *argv[]) {
9292
auto PrintSymbol = [&](StringRef Name) {
9393
dbgs() << Name << " = ";
9494
if (auto Sym = J->lookup(JD, Name))
95-
dbgs() << *Sym;
95+
dbgs() << *Sym << "\n";
9696
else
9797
dbgs() << "error: " << toString(Sym.takeError()) << "\n";
9898
};

0 commit comments

Comments
 (0)