Skip to main content

lamina_codegen/riscv/
mod.rs

1//! RISC-V codegen utilities
2
3pub mod abi;
4pub mod frame;
5pub mod regalloc;
6
7pub use abi::RiscVAbi;
8pub use frame::RiscVFrame;
9pub use regalloc::RiscVRegAlloc;