Skip to content

Commit 11e8122

Browse files
committed
Format
1 parent 1df88d2 commit 11e8122

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llvm/lib/Target/AMDGPU/AMDGPUEliminateAGPRToVGPRCopy.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,11 @@ bool AMDGPUEliminateAGPRToVGPRCopyImpl::run(MachineFunction &MF) const {
129129
if (SIInstrInfo::isMFMA(UseMI)) {
130130
if (&MO != TII.getNamedOperand(UseMI, AMDGPU::OpName::src0) &&
131131
&MO != TII.getNamedOperand(UseMI, AMDGPU::OpName::src1)) {
132-
LLVM_DEBUG(dbgs() << " Incompatible MFMA operand: " << UseMI);
132+
LLVM_DEBUG(dbgs()
133+
<< " Incompatible MFMA operand: " << UseMI);
133134
return false;
134135
}
135-
} else if (!UseMI.isFullCopy()){
136+
} else if (!UseMI.isFullCopy()) {
136137
LLVM_DEBUG(dbgs() << " Incompatible user: " << UseMI);
137138
return false;
138139
}

0 commit comments

Comments
 (0)