]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_mir_build/src/thir/mod.rs
Auto merge of #91837 - Kobzol:stable-hash-map-avoid-sort, r=the8472
[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;