Document BasicBlock::Create.

llvm-svn: 54210
This commit is contained in:
Matthijs Kooijman 2008-07-30 12:53:14 +00:00
parent ca4ffaabcd
commit be31571ca5
1 changed files with 3 additions and 1 deletions

View File

@ -74,7 +74,9 @@ public:
typedef InstListType::iterator iterator;
typedef InstListType::const_iterator const_iterator;
// allocate space for exactly zero operands
/// Create - Creates a new BasicBlock. If the Parent parameter is specified,
/// the basic block is automatically inserted at either the end of the
/// function (if InsertBefore is 0), or before the specified basic block.
static BasicBlock *Create(const std::string &Name = "", Function *Parent = 0,
BasicBlock *InsertBefore = 0) {
return new BasicBlock(Name, Parent, InsertBefore);