insertBefore overloads
Synopses
Declared in <llvm/IR/Instruction.h>
Insert an unlinked instruction into a basic block immediately before the specified position.
void
insertBefore(InstListType::iterator InsertPos);
Insert an unlinked instruction into BB immediately before InsertPos.
void
insertBefore(
BasicBlock& BB,
InstListType::iterator InsertPos);
Parameters
Name |
Description |
InsertPos |
Iterator insertion point in the destination block. |
BB |
The basic block to insert into. |
Created with MrDocs