Click or drag to resize
Llvm.NET LogoInstructionBuilderStore Method

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

Builds an LLVM Store instruction

Namespace:  Llvm.NET.Instructions
Assembly:  Llvm.NET (in Llvm.NET.dll) Version: 3.8.6158
Syntax
C#
public Store Store(
	Value value,
	Value destination
)

Parameters

value
Type: Llvm.NET.ValuesValue
Value to store in destination
destination
Type: Llvm.NET.ValuesValue
value for the destination

Return Value

Type: Store
Store instruction
Remarks
Since store targets memory the type of destination must be an IPointerType. Furthermore, the element type of the pointer must match the type of value. Otherwise, an ArgumentException is thrown.
See Also