aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-05-17 22:25:12 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-05-17 22:25:12 +0000
commitf40ae3cc9d7e00e8be72cc0596386af6c6925e8d (patch)
treef5db0f94f2f2f58bb2c0676c524900916842056d
parent71d3a87ec1cf788236f48527f2cf5e2ae65df492 (diff)
* Minor aesthetic alignment of iterator declarations
* Removed redundant function comments git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13592 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/BasicBlock.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h
index 0e12cab223..931b1162c8 100644
--- a/include/llvm/BasicBlock.h
+++ b/include/llvm/BasicBlock.h
@@ -61,8 +61,8 @@ private :
public:
/// Instruction iterators...
- typedef InstListType::iterator iterator;
- typedef InstListType::const_iterator const_iterator;
+ typedef InstListType::iterator iterator;
+ typedef InstListType::const_iterator const_iterator;
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
typedef std::reverse_iterator<iterator> reverse_iterator;
@@ -70,9 +70,6 @@ public:
/// is automatically inserted at either the end of the function (if
/// InsertBefore is null), or before the specified basic block.
///
- /// BasicBlock ctor - If the InsertBefore parameter is specified, the basic
- /// block is automatically inserted right before the specified block.
- ///
BasicBlock(const std::string &Name = "", Function *Parent = 0,
BasicBlock *InsertBefore = 0);
~BasicBlock();