Create and insert a new PHINode.
Declared in <llvm/SandboxIR/Instruction.h>
static
PHINode*
create(
Type* Ty,
unsigned int NumReservedValues,
InsertPosition Pos,
Context& Ctx,
Twine const& Name = "");
The newly created instruction.
| Name | Description |
|---|---|
| Ty | Result type of the PHI. |
| NumReservedValues | Number of PHI incoming values to reserve. |
| Pos | Insert position for the new instruction. |
| Ctx | SandboxIR context. |
| Name | Name of the new instruction. |