Skip to content

Commit

Permalink
[JITLink] Fix 80-column rule violation.
Browse files Browse the repository at this point in the history
  • Loading branch information
lhames committed May 29, 2020
1 parent 4e74541 commit 9eafcbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion llvm/tools/llvm-jitlink/llvm-jitlink-macho.cpp
Expand Up @@ -90,7 +90,8 @@ Error registerMachOStubsAndGOT(Session &S, LinkGraph &G) {
for (auto &Sec : G.sections()) {
LLVM_DEBUG({
dbgs() << " Section \"" << Sec.getName() << "\": "
<< (llvm::empty(Sec.symbols()) ? "empty. skipping." : "processing...")
<< (llvm::empty(Sec.symbols()) ? "empty. skipping."
: "processing...")
<< "\n";
});

Expand Down

0 comments on commit 9eafcbf

Please sign in to comment.