aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-01-26 20:19:05 +0000
committerChad Rosier <mcrosier@apple.com>2012-01-26 20:19:05 +0000
commit9b61cf31677ced6e477990a43962e92eb8737025 (patch)
tree58a9d81d25d045e7b7d99246259dc1efc80af25b /llvm/lib/CodeGen/MachineBasicBlock.cpp
parent18a962bab521ca6f7d0908a123c43a782ae5ee99 (diff)
downloadllvm-9b61cf31677ced6e477990a43962e92eb8737025.zip
llvm-9b61cf31677ced6e477990a43962e92eb8737025.tar.gz
llvm-9b61cf31677ced6e477990a43962e92eb8737025.tar.bz2
Update comment for r149070.
llvm-svn: 149075
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineBasicBlock.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp
index 0205c0a..a991ee4 100644
--- a/llvm/lib/CodeGen/MachineBasicBlock.cpp
+++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp
@@ -537,9 +537,7 @@ bool MachineBasicBlock::canFallThrough() {
// If the block doesn't end in a known control barrier, assume fallthrough
// is possible. The isPredicated check is needed because this code can be
// called during IfConversion, where an instruction which is normally a
- // Barrier is predicated and thus no longer an actual control barrier. This
- // is over-conservative though, because if an instruction isn't actually
- // predicated we could still treat it like a barrier.
+ // Barrier is predicated and thus no longer an actual control barrier.
return empty() || !back().isBarrier() || TII->isPredicated(&back());
}