1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
// Copyright (c) 2017-2020 Fabian Schuiki

//! Optimization infrastructure.
//!
//! This module implements infrastructure used by the optimization system which
//! operates on LLHD IR.

mod pass;

pub use pass::*;

pub mod prelude {
    pub use super::pass::*;
}