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 d218789 commit 1f86debCopy full SHA for 1f86deb
llvm/lib/Target/AMDGPU/AMDGPURewriteAGPRCopyMFMA.cpp
@@ -96,8 +96,10 @@ bool AMDGPURewriteAGPRCopyMFMAImpl::run(MachineFunction &MF) const {
96
return false;
97
98
// Early exit if no AGPRs were assigned.
99
- if (!LRM.isPhysRegUsed(AMDGPU::AGPR0))
+ if (!LRM.isPhysRegUsed(AMDGPU::AGPR0)) {
100
+ LLVM_DEBUG(dbgs() << "skipping function that did not allocate AGPRs\n");
101
102
+ }
103
104
bool MadeChange = false;
105
0 commit comments