]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_mir_build/src/thir/mod.rs
Merge commit '370c397ec9169809e5ad270079712e0043514240' into sync_cg_clif-2022-03-20
[rust.git] / compiler / rustc_mir_build / src / thir / mod.rs
1 //! The MIR is built from some typed high-level IR
2 //! (THIR). This section defines the THIR along with a trait for
3 //! accessing it. The intention is to allow MIR construction to be
4 //! unit-tested and separated from the Rust source and compiler data
5 //! structures.
6
7 crate mod constant;
8
9 crate mod cx;
10
11 crate mod pattern;
12
13 mod util;