summaryrefslogtreecommitdiff
path: root/include/llvm/BasicBlock.h
diff options
context:
space:
mode:
authorTorok Edwin <edwintorok@gmail.com>2008-12-11 11:44:49 +0000
committerTorok Edwin <edwintorok@gmail.com>2008-12-11 11:44:49 +0000
commit9053a739e50cb6f6b68268cc7c6b95146e66d396 (patch)
tree6b74d28837c1424d2f16132d63d8b03b46e9c98f /include/llvm/BasicBlock.h
parentde1e5216481bc4ebfbc710591287ae5f8fc183ba (diff)
downloadllvm-9053a739e50cb6f6b68268cc7c6b95146e66d396.tar.gz
llvm-9053a739e50cb6f6b68268cc7c6b95146e66d396.tar.bz2
llvm-9053a739e50cb6f6b68268cc7c6b95146e66d396.tar.xz
fix grammar, thanks Duncan!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60875 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/BasicBlock.h')
-rw-r--r--include/llvm/BasicBlock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h
index ee5ceb3683..780aca5ef6 100644
--- a/include/llvm/BasicBlock.h
+++ b/include/llvm/BasicBlock.h
@@ -137,8 +137,8 @@ public:
/// getUniquePredecessor - If this basic block has a unique predecessor block,
/// return the block, otherwise return a null pointer.
/// Note that unique predecessor doesn't mean single edge, there can be
- /// multiple edges from the unique predecessor to this block (for example in
- /// case of a switch statement with multiple cases having same destination).
+ /// multiple edges from the unique predecessor to this block (for example
+ /// a switch statement with multiple cases having the same destination).
BasicBlock *getUniquePredecessor();
const BasicBlock *getUniquePredecessor() const {
return const_cast<BasicBlock*>(this)->getUniquePredecessor();