public LlvmBuilder(LlvmBlock block, LLVMBuilderRef reference) : base(reference) { this.Block = block; this.instructions = new List <LlvmValue>(); // Position the builder if applicable. if (this.HasBlock) { this.PositionAtEnd(); } }
public LlvmBuilder(LlvmBlock block) : this(block, LLVM.CreateBuilder()) { // }