xrcf 0.8.0

eXtensible and Reusable Compiler Framework
Documentation
1
2
3
4
5
6
7
8
9
10
//! Function dialect.
//!
//! This dialect is meant to hold operations that are related to functions.
mod op;

pub use op::Call;
pub use op::CallOp;
pub use op::Func;
pub use op::FuncOp;
pub use op::ReturnOp;