Skip to content

Commit d209c13

Browse files
committed
Formatting fix
1 parent 03e255f commit d209c13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/CodeGen/MachineCopyPropagation.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,8 @@ void MachineCopyPropagation::ForwardCopyPropagateBlock(MachineBasicBlock &MBB) {
975975
// register move (i.e. one where source and destination registers are the
976976
// same). If so, delete it.
977977
CopyOperands = isCopyInstr(MI, *TII, UseCopyInstr);
978-
if (CopyOperands && CopyOperands->Source->getReg() == CopyOperands->Destination->getReg()) {
978+
if (CopyOperands &&
979+
CopyOperands->Source->getReg() == CopyOperands->Destination->getReg()) {
979980
MI.eraseFromParent();
980981
NumDeletes++;
981982
Changed = true;

0 commit comments

Comments
 (0)