rust/compiler/rustc_smir/src/lib.rs

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

20 lines
568 B
Rust
Raw Normal View History

2022-05-25 07:30:04 +00:00
//! The WIP stable interface to rustc internals.
2022-05-25 09:11:09 +00:00
//!
2022-05-25 08:48:14 +00:00
//! For more information see https://github.com/rust-lang/project-stable-mir
2022-05-25 09:11:09 +00:00
//!
2022-05-25 08:48:14 +00:00
//! # Note
//!
//! This API is still completely unstable and subject to change.
2022-05-25 07:30:04 +00:00
#![doc(
html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
test(attr(allow(unused_variables), deny(warnings)))
)]
#![cfg_attr(not(feature = "default"), feature(rustc_private))]
pub mod rustc_internal;
pub mod stable_mir;
// Make this module private for now since external users should not call these directly.
mod rustc_smir;