We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 596989d commit b650778Copy full SHA for b650778
llvm/lib/Target/AMDGPU/SIOptimizeVGPRLiveRange.cpp
@@ -161,10 +161,12 @@ void SIOptimizeVGPRLiveRange::collectElseRegionBlocks(
161
MBB = nullptr;
162
}
163
164
- LLVM_DEBUG(dbgs() << "Found Else blocks: ");
165
- for (auto *MBB : Blocks)
166
- LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << ' ');
167
- LLVM_DEBUG(dbgs() << '\n');
+ LLVM_DEBUG({
+ dbgs() << "Found Else blocks: ";
+ for (auto *MBB : Blocks)
+ dbgs() << printMBBReference(*MBB) << ' ';
168
+ dbgs() << '\n';
169
+ });
170
171
172
/// Find the instructions(excluding phi) in \p MBB that uses the \p Reg.
0 commit comments