From: Chandler Carruth Date: Wed, 15 Apr 2015 13:19:54 +0000 (+0000) Subject: [MBP] Fix a really misleading typo in a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ec07ff56b988d537fbcd4b16ff65e31c688bf64e;p=oota-llvm.git [MBP] Fix a really misleading typo in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235006 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineBlockPlacement.cpp b/lib/CodeGen/MachineBlockPlacement.cpp index ecc50c916b0..5e7daa8173b 100644 --- a/lib/CodeGen/MachineBlockPlacement.cpp +++ b/lib/CodeGen/MachineBlockPlacement.cpp @@ -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;