`rustc_mir_dataflow` cleanups, including some renamings Some opinionated commits in this collection, let's see how we go. r? `@cjgillot`
16 lines
570 B
Rust
16 lines
570 B
Rust
mod borrowed_locals;
|
|
mod initialized;
|
|
mod liveness;
|
|
mod storage_liveness;
|
|
|
|
pub use self::borrowed_locals::{MaybeBorrowedLocals, borrowed_locals};
|
|
pub use self::initialized::{
|
|
EverInitializedPlaces, EverInitializedPlacesDomain, MaybeInitializedPlaces,
|
|
MaybeUninitializedPlaces, MaybeUninitializedPlacesDomain,
|
|
};
|
|
pub use self::liveness::{
|
|
MaybeLiveLocals, MaybeTransitiveLiveLocals, TransferFunction as LivenessTransferFunction,
|
|
};
|
|
pub use self::storage_liveness::{
|
|
MaybeRequiresStorage, MaybeStorageDead, MaybeStorageLive, always_storage_live_locals,
|
|
};
|