Files
rust/compiler/rustc_mir_build/src/thir/mod.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
335 B
Rust
Raw Normal View History

2020-07-21 09:09:27 +00:00
//! The MIR is built from some typed high-level IR
//! (THIR). This section defines the THIR along with a trait for
2015-08-18 17:59:21 -04:00
//! accessing it. The intention is to allow MIR construction to be
//! unit-tested and separated from the Rust source and compiler data
//! structures.
crate mod constant;
2021-03-07 15:09:00 +01:00
crate mod cx;
2015-08-18 17:59:21 -04:00
crate mod pattern;
2016-09-24 17:45:24 +03:00
mod util;