[MBP] Fix a really misleading typo in a comment.
[oota-llvm.git] / lib / CodeGen / MachineBlockPlacement.cpp
index ecc50c916b0b425f0570a0de5335c336c188a941..5e7daa8173bb6b4c0bfc374bfa32087bf026cc23 100644 (file)
@@ -661,7 +661,7 @@ MachineBlockPlacement::findBestLoopExit(MachineFunction &F, MachineLoop &L,
   for (MachineBasicBlock *MBB : L.getBlocks()) {
     BlockChain &Chain = *BlockToChain[MBB];
     // Ensure that this block is at the end of a chain; otherwise it could be
-    // mid-way through an inner loop or a successor of an analyzable branch.
+    // mid-way through an inner loop or a successor of an unanalyzable branch.
     if (MBB != *std::prev(Chain.end()))
       continue;