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

This data is stored inside extra, with two sets of trailing Ref:

    1. the then body, according to then_body_len.
    1. the else body, according to else_body_len.

Fields

condition: Ref
then_body_len: u32
else_body_len: u32

Source Code

Source code
pub const CondBr = struct {
    condition: Ref,
    then_body_len: u32,
    else_body_len: u32,
}