Method PositionBefore
PositionBefore(Instruction)
Positions the builder before the given instruction
Declaration
public void PositionBefore(Instruction instr)
Parameters
public void PositionBefore(Instruction instr)
Instruction | instr | Instruction to position the builder before |
Remarks
This method will position the builder to add new instructions immediately before the specified instruction.
note
It is important to keep in mind that this can change the
block this builder is targeting. That is, instr
is not required to come from the same block the instruction builder is
currently referencing.