Function store [src]
Prototype
pub fn store( self: *WipFunction, kind: MemoryAccessKind, val: Value, ptr: Value, alignment: Alignment, ) Allocator.Error!Instruction.Index
Parameters
self: *WipFunction
kind: MemoryAccessKind
val: Value
ptr: Value
alignment: Alignment
Source
pub fn store(
self: *WipFunction,
kind: MemoryAccessKind,
val: Value,
ptr: Value,
alignment: Alignment,
) Allocator.Error!Instruction.Index {
return self.storeAtomic(kind, val, ptr, .system, .none, alignment);
}