Method Store
Store(Value, Value)
Builds an LLVM Store instruction
Declaration
public Store Store(Value value, Value destination)
Parameters
public Store Store(Value value, Value destination)
Value | value | Value to store in destination |
Value | destination | value for the destination |
Returns
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.