diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-01-26 20:19:05 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-01-26 20:19:05 +0000 |
commit | 9b61cf31677ced6e477990a43962e92eb8737025 (patch) | |
tree | 58a9d81d25d045e7b7d99246259dc1efc80af25b /llvm/lib/CodeGen/MachineBasicBlock.cpp | |
parent | 18a962bab521ca6f7d0908a123c43a782ae5ee99 (diff) | |
download | llvm-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.cpp | 4 |
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()); } |