Enum cranelift_codegen::ir::instructions::BranchInfo[][src]

pub enum BranchInfo<'a> {
    NotABranch,
    SingleDest(Ebb&'a [Value]),
    Table(JumpTable),
}

Information about branch and jump instructions.

Variants

This is not a branch or jump instruction. This instruction will not transfer control to another EBB in the function, but it may still affect control flow by returning or trapping.

This is a branch or jump to a single destination EBB, possibly taking value arguments.

This is a jump table branch which can have many destination EBBs.

Auto Trait Implementations

impl<'a> Send for BranchInfo<'a>

impl<'a> Sync for BranchInfo<'a>