Reformat comment lines.
[oota-llvm.git] / lib / CodeGen / TwoAddressInstructionPass.cpp
index f3bc26369934a89e2ceab381bead2d3ca4f1e5a7..fa3c8be81ba60eb74a495e082556f9f947c2315a 100644 (file)
@@ -1212,8 +1212,8 @@ tryInstructionTransform(MachineBasicBlock::iterator &mi,
   // use this variable to check later. Because it might be better.
   // For example, we can just use `leal (%rsi,%rdi), %eax` and `ret`
   // instead of the following code.
-  //   addl    %esi, %edi
-  //   movl    %edi, %eax
+  //   addl     %esi, %edi
+  //   movl     %edi, %eax
   //   ret
   bool Commuted = false;
 
@@ -1661,8 +1661,8 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &Func) {
           unsigned DstReg = mi->getOperand(DstIdx).getReg();
           if (SrcReg != DstReg &&
               tryInstructionTransform(mi, nmi, SrcIdx, DstIdx, Dist, false)) {
-            // The tied operands have been eliminated or shifted further down the
-            // block to ease elimination. Continue processing with 'nmi'.
+            // The tied operands have been eliminated or shifted further down
+            // the block to ease elimination. Continue processing with 'nmi'.
             TiedOperands.clear();
             mi = nmi;
             continue;