git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254686 91177308-0d34-0410...
authorJunmo Park <junmoz.park@samsung.com>
Fri, 4 Dec 2015 02:06:59 +0000 (02:06 +0000)
committerJunmo Park <junmoz.park@samsung.com>
Fri, 4 Dec 2015 02:06:59 +0000 (02:06 +0000)
lib/CodeGen/BranchFolding.cpp

index c6a6476747e6e15faa26f1f6c6991f27b0fade31..e41926a819c2e1202755cabf562c62418e366148 100644 (file)
@@ -371,7 +371,7 @@ static unsigned ComputeCommonTailLength(MachineBasicBlock *MBB1,
   }
   // Back past possible debugging pseudos at beginning of block.  This matters
   // when one block differs from the other only by whether debugging pseudos
-  // are present at the beginning.  (This way, the various checks later for
+  // are present at the beginning. (This way, the various checks later for
   // I1==MBB1->begin() work as expected.)
   if (I1 == MBB1->begin() && I2 != MBB2->begin()) {
     --I2;