Skip to content

Commit eefbb14

Browse files
committed
clang-format
1 parent 1cd822a commit eefbb14

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,8 @@ InstrEmitter::AddRegisterOperand(MachineInstrBuilder &MIB,
352352
assert(OpRC && "Constraints cannot be fulfilled for allocation");
353353
Register NewVReg = MRI->createVirtualRegister(OpRC);
354354
BuildMI(*MBB, InsertPos, MIB->getDebugLoc(),
355-
TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
355+
TII->get(TargetOpcode::COPY), NewVReg)
356+
.addReg(VReg);
356357
VReg = NewVReg;
357358
} else {
358359
assert(ConstrainedRC->isAllocatable() &&

0 commit comments

Comments
 (0)