Click or drag to resize
Llvm.NET LogoInstructionBuilderPositionBefore Method

[This is preliminary documentation and is subject to change.]

Positions the builder before the given instruction

Namespace:  Llvm.NET.Instructions
Assembly:  Llvm.NET (in Llvm.NET.dll) Version: 3.8.6158
Syntax
C#
public void PositionBefore(
	Instruction instr
)

Parameters

instr
Type: Llvm.NET.InstructionsInstruction
Instruction to position the builder before
Remarks
This method will position the builder to add new instructions immediately before the specified instruction.
Note 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.
See Also