kvarn_async::prelude::compact_str::core::intrinsics::mir

Enum BasicBlock

source
pub enum BasicBlock {
    Normal,
    Cleanup,
}
🔬This is a nightly-only experimental API. (custom_mir)
Expand description

Type representing basic blocks.

All terminators will have this type as a return type. It helps achieve some type safety.

Variants§

§

Normal

🔬This is a nightly-only experimental API. (custom_mir)

A non-cleanup basic block.

§

Cleanup

🔬This is a nightly-only experimental API. (custom_mir)

A basic block that lies on an unwind path.

Auto Trait Implementations§