mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
[NFC][LoopFusion] Fix printing of the guard branch.
Reviewer: kbarton, jdoerfert Reviewed By: jdoerfert Subscribers: hiraditya, llvm-commits Tag: LLVM Differential Revision: https://reviews.llvm.org/D71878
This commit is contained in:
parent
f7cad0a97a
commit
263807e28c
@ -257,7 +257,12 @@ struct FusionCandidate {
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
LLVM_DUMP_METHOD void dump() const {
|
||||
dbgs() << "\tGuardBranch: "
|
||||
dbgs() << "\tGuardBranch: ";
|
||||
if (GuardBranch)
|
||||
dbgs() << *GuardBranch;
|
||||
else
|
||||
dbgs() << "nullptr";
|
||||
dbgs() << "\n"
|
||||
<< (GuardBranch ? GuardBranch->getName() : "nullptr") << "\n"
|
||||
<< "\tPreheader: " << (Preheader ? Preheader->getName() : "nullptr")
|
||||
<< "\n"
|
||||
|
Loading…
Reference in New Issue
Block a user