diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-04-15 13:19:54 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-04-15 13:19:54 +0000 |
commit | 9a512a48b2d2f9a035b29d404f39579de7a7a273 (patch) | |
tree | 067061f31b72599a00f3f04044188406b678fc00 /llvm/lib | |
parent | 7c1d91d8166896e1358c64827a4b347b4dc69523 (diff) | |
download | bcm5719-llvm-9a512a48b2d2f9a035b29d404f39579de7a7a273.tar.gz bcm5719-llvm-9a512a48b2d2f9a035b29d404f39579de7a7a273.zip |
[MBP] Fix a really misleading typo in a comment.
llvm-svn: 235006
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/MachineBlockPlacement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineBlockPlacement.cpp b/llvm/lib/CodeGen/MachineBlockPlacement.cpp index ecc50c916b0..5e7daa8173b 100644 --- a/llvm/lib/CodeGen/MachineBlockPlacement.cpp +++ b/llvm/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; |