llhd/lib.rs
#![deny(missing_docs)]
// Copyright (c) 2017-2021 Fabian Schuiki
//! The Low Level Hardware Description language. This library provides tools to
//! create, modify, store, and load LLHD graphs.
#[allow(unused_imports)]
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde;
#[macro_use]
pub mod assembly;
pub mod analysis;
pub mod ir;
pub mod mlir;
pub mod opt;
pub mod pass;
pub mod table;
pub mod ty;
pub mod value;
pub mod verifier;
pub use crate::{ty::*, value::*};