structstd.zig.llvm.Builder.Function.Instruction.Alloca[src]

Fields

type: Type
len: Value
info: Info

Source Code

Source code
pub const Alloca = struct {
    type: Type,
    len: Value,
    info: Info,

    pub const Kind = enum { normal, inalloca };
    pub const Info = packed struct(u32) {
        alignment: Alignment,
        addr_space: AddrSpace,
        _: u2 = undefined,
    };
}