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 1df88d2 commit 11e8122Copy full SHA for 11e8122
llvm/lib/Target/AMDGPU/AMDGPUEliminateAGPRToVGPRCopy.cpp
@@ -129,10 +129,11 @@ bool AMDGPUEliminateAGPRToVGPRCopyImpl::run(MachineFunction &MF) const {
129
if (SIInstrInfo::isMFMA(UseMI)) {
130
if (&MO != TII.getNamedOperand(UseMI, AMDGPU::OpName::src0) &&
131
&MO != TII.getNamedOperand(UseMI, AMDGPU::OpName::src1)) {
132
- LLVM_DEBUG(dbgs() << " Incompatible MFMA operand: " << UseMI);
+ LLVM_DEBUG(dbgs()
133
+ << " Incompatible MFMA operand: " << UseMI);
134
return false;
135
}
- } else if (!UseMI.isFullCopy()){
136
+ } else if (!UseMI.isFullCopy()) {
137
LLVM_DEBUG(dbgs() << " Incompatible user: " << UseMI);
138
139
0 commit comments