diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2023-07-16 13:11:10 +0000 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2023-07-19 09:59:12 +0000 |
| commit | f5feb3e3ca739d0f2eeef6e914f97316a05af01d (patch) | |
| tree | 05a2523bb9cfb5a8ae1f08f613d3c6ec3e43abf8 /compiler/rustc_mir_dataflow/src/impls/mod.rs | |
| parent | b657dc555b1ecf837cc4ea471fbae6a731529d55 (diff) | |
| download | rust-f5feb3e3ca739d0f2eeef6e914f97316a05af01d.tar.gz rust-f5feb3e3ca739d0f2eeef6e914f97316a05af01d.zip | |
Turn copy into moves during DSE.
Diffstat (limited to 'compiler/rustc_mir_dataflow/src/impls/mod.rs')
| -rw-r--r-- | compiler/rustc_mir_dataflow/src/impls/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_mir_dataflow/src/impls/mod.rs b/compiler/rustc_mir_dataflow/src/impls/mod.rs index 633b99a332b..7ddd01e34aa 100644 --- a/compiler/rustc_mir_dataflow/src/impls/mod.rs +++ b/compiler/rustc_mir_dataflow/src/impls/mod.rs @@ -26,6 +26,7 @@ pub use self::borrowed_locals::borrowed_locals; pub use self::borrowed_locals::MaybeBorrowedLocals; pub use self::liveness::MaybeLiveLocals; pub use self::liveness::MaybeTransitiveLiveLocals; +pub use self::liveness::TransferFunction as LivenessTransferFunction; pub use self::storage_liveness::{MaybeRequiresStorage, MaybeStorageDead, MaybeStorageLive}; /// `MaybeInitializedPlaces` tracks all places that might be |
