[llvm] r235006 - [MBP] Fix a really misleading typo in a comment.

Chandler Carruth chandlerc at gmail.com
Wed Apr 15 06:19:54 PDT 2015


Author: chandlerc
Date: Wed Apr 15 08:19:54 2015
New Revision: 235006

URL: http://llvm.org/viewvc/llvm-project?rev=235006&view=rev
Log:
[MBP] Fix a really misleading typo in a comment.

Modified:
    llvm/trunk/lib/CodeGen/MachineBlockPlacement.cpp

Modified: llvm/trunk/lib/CodeGen/MachineBlockPlacement.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineBlockPlacement.cpp?rev=235006&r1=235005&r2=235006&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineBlockPlacement.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineBlockPlacement.cpp Wed Apr 15 08:19:54 2015
@@ -661,7 +661,7 @@ MachineBlockPlacement::findBestLoopExit(
   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;
 





More information about the llvm-commits mailing list