llhd/lib.rs
1#![deny(missing_docs)]
2// Copyright (c) 2017-2021 Fabian Schuiki
3
4//! The Low Level Hardware Description language. This library provides tools to
5//! create, modify, store, and load LLHD graphs.
6
7#[allow(unused_imports)]
8#[macro_use]
9extern crate log;
10
11#[macro_use]
12extern crate serde;
13
14#[macro_use]
15pub mod assembly;
16pub mod analysis;
17pub mod ir;
18pub mod mlir;
19pub mod opt;
20pub mod pass;
21pub mod table;
22pub mod ty;
23pub mod value;
24pub mod verifier;
25
26pub use crate::{ty::*, value::*};