structstd.zig.Zir.Inst.AllocExtended[src]

Trailing:

  1. type_inst: Ref, // if small 0b000X is set
  2. align_inst: Ref, // if small 0b00X0 is set

Fields

src_node: i32

Source Code

Source code
pub const AllocExtended = struct {
    src_node: i32,

    pub const Small = packed struct {
        has_type: bool,
        has_align: bool,
        is_const: bool,
        is_comptime: bool,
        _: u12 = undefined,
    };
}