1 2 3 4 5 6 7 8 9 10
//! Traits that extends the [`Block`](crate::ir::Block) type to aid in code //! generation and consistency. mod arith; mod builtin; mod llvm; pub use arith::ArithBlockExt; pub use builtin::BuiltinBlockExt; pub use llvm::{GepIndex, LlvmBlockExt};