Create an indirect branch instruction.
Declared in <llvm/IR/IRBuilder.h>
IndirectBrInst*
CreateIndirectBr(
Value* Addr,
unsigned int NumDests = 10);
Uses the specified address operand, with an optional hint for the number of destinations that will be added (for efficient allocation).
The created indirect branch instruction.
| Name | Description |
|---|---|
| Addr | Indirect branch target address. |
| NumDests | Hint for how many indirect destinations will be added. |