mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
- Add new ctor to BasicBlock to allow insertion before any BB, not just at
the end of the function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3933 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3a15d70734
commit
5cf816b09e
@ -63,6 +63,10 @@ public:
|
||||
/// is automatically inserted at the end of the function.
|
||||
///
|
||||
BasicBlock(const std::string &Name = "", Function *Parent = 0);
|
||||
|
||||
/// BasicBlock ctor - If the InsertBefore parameter is specified, the basic
|
||||
/// block is automatically inserted right before the specified block.
|
||||
BasicBlock(const std::string &Name, BasicBlock *InsertBefore);
|
||||
~BasicBlock();
|
||||
|
||||
// Specialize setName to take care of symbol table majik
|
||||
|
Loading…
Reference in New Issue
Block a user