Skip to content

Commit 21ade5a

Browse files
committed
[JITLink] Fix indentation in debugging output.
1 parent e7f756d commit 21ade5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -361,14 +361,14 @@ Error EHFrameEdgeFixer::processFDE(ParseContext &PC, Block &B,
361361
// Add a keep-alive edge from the FDE target to the FDE to ensure that the
362362
// FDE is kept alive if its target is.
363363
LLVM_DEBUG({
364-
dbgs() << " Adding keep-alive edge from target at "
364+
dbgs() << " Adding keep-alive edge from target at "
365365
<< (*PCBegin)->getBlock().getAddress() << " to FDE at "
366366
<< RecordAddress << "\n";
367367
});
368368
(*PCBegin)->getBlock().addEdge(Edge::KeepAlive, 0, FDESymbol, 0);
369369
} else {
370370
LLVM_DEBUG({
371-
dbgs() << " WARNING: Not adding keep-alive edge to FDE at "
371+
dbgs() << " WARNING: Not adding keep-alive edge to FDE at "
372372
<< RecordAddress << ", which points to "
373373
<< ((*PCBegin)->isExternal() ? "external" : "absolute")
374374
<< " symbol \"" << (*PCBegin)->getName()
@@ -395,7 +395,7 @@ Error EHFrameEdgeFixer::processFDE(ParseContext &PC, Block &B,
395395
.takeError())
396396
return Err;
397397
} else {
398-
LLVM_DEBUG(dbgs() << " Record does not have LSDA field.\n");
398+
LLVM_DEBUG(dbgs() << " Record does not have LSDA field.\n");
399399
}
400400

401401
return Error::success();

0 commit comments

Comments
 (0)