From 9053a739e50cb6f6b68268cc7c6b95146e66d396 Mon Sep 17 00:00:00 2001 From: Torok Edwin Date: Thu, 11 Dec 2008 11:44:49 +0000 Subject: [PATCH] fix grammar, thanks Duncan! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60875 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/BasicBlock.h | 4 ++-- lib/VMCore/BasicBlock.cpp | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index ee5ceb3683a..780aca5ef6d 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(this)->getUniquePredecessor(); diff --git a/lib/VMCore/BasicBlock.cpp b/lib/VMCore/BasicBlock.cpp index ab2cbebb90c..a76f659233d 100644 --- a/lib/VMCore/BasicBlock.cpp +++ b/lib/VMCore/BasicBlock.cpp @@ -172,8 +172,8 @@ BasicBlock *BasicBlock::getSinglePredecessor() { /// 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 *BasicBlock::getUniquePredecessor() { pred_iterator PI = pred_begin(this), E = pred_end(this); if (PI == E) return 0; // No preds. @@ -182,8 +182,8 @@ BasicBlock *BasicBlock::getUniquePredecessor() { for (;PI != E; ++PI) { if (*PI != PredBB) return 0; - // same predecessor appears multiple times in predecessor list, - // this is ok + // The same predecessor appears multiple times in the predecessor list. + // This is OK. } return PredBB; }