Function load [src]
Prototype
 pub fn load( self: *WipFunction, access_kind: MemoryAccessKind, ty: Type, ptr: Value, alignment: Alignment, name: []const u8, ) Allocator.Error!Value  Parameters
self: *WipFunctionaccess_kind: MemoryAccessKindty: Typeptr: Valuealignment: Alignmentname: []const u8 Source
 pub fn load(
    self: *WipFunction,
    access_kind: MemoryAccessKind,
    ty: Type,
    ptr: Value,
    alignment: Alignment,
    name: []const u8,
) Allocator.Error!Value {
    return self.loadAtomic(access_kind, ty, ptr, .system, .none, alignment, name);
}