1
2
3
4
5
6
7
8
9
// Copyright (c) 2017-2019 Fabian Schuiki

//! Optimization and analysis passes on LLHD IR.
//!
//! This module implements various passes that analyze or mutate an LLHD
//! intermediate representation.

pub mod const_folding;
pub mod dead_code_elim;