Skip to content

Commit a226132

Browse files
committed
WIP move elimination
1 parent 991b35a commit a226132

7 files changed

Lines changed: 1438 additions & 1 deletion

File tree

compiler/rustc_mir_dataflow/src/impls/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
mod borrowed_locals;
22
mod initialized;
33
mod liveness;
4+
mod precise_liveness;
45
mod storage_liveness;
56

67
pub use self::borrowed_locals::{MaybeBorrowedLocals, borrowed_locals};
@@ -12,6 +13,7 @@ pub use self::liveness::{
1213
DefUse, MaybeLiveLocals, MaybeTransitiveLiveLocals,
1314
TransferFunction as LivenessTransferFunction,
1415
};
16+
pub use self::precise_liveness::{SplitPointEffect, SplitPointIndex, liveness_matrix};
1517
pub use self::storage_liveness::{
1618
MaybeRequiresStorage, MaybeStorageDead, MaybeStorageLive, always_storage_live_locals,
1719
};

0 commit comments

Comments
 (0)