about summary refs log tree commit diff
path: root/compiler/rustc_mir/src/dataflow
diff options
context:
space:
mode:
authorJonas Schievink <jonasschievink@gmail.com>2020-05-24 18:22:04 +0200
committerJonas Schievink <jonasschievink@gmail.com>2020-09-18 21:23:00 +0200
commit78ff69ba1086decb205b988f05aba7711dddb221 (patch)
treec59923b830955d667d1ce60f5421a1d9a0577d09 /compiler/rustc_mir/src/dataflow
parent9f8ac718f44e280edb1a7b3266f2c26106ec11a0 (diff)
downloadrust-78ff69ba1086decb205b988f05aba7711dddb221.tar.gz
rust-78ff69ba1086decb205b988f05aba7711dddb221.zip
Implement a destination propagation pass
Diffstat (limited to 'compiler/rustc_mir/src/dataflow')
-rw-r--r--compiler/rustc_mir/src/dataflow/impls/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_mir/src/dataflow/impls/mod.rs b/compiler/rustc_mir/src/dataflow/impls/mod.rs
index c42d5867856..1769feaf7a5 100644
--- a/compiler/rustc_mir/src/dataflow/impls/mod.rs
+++ b/compiler/rustc_mir/src/dataflow/impls/mod.rs
@@ -204,7 +204,7 @@ impl<'a, 'tcx> HasMoveData<'tcx> for DefinitelyInitializedPlaces<'a, 'tcx> {
 
 /// `EverInitializedPlaces` tracks all places that might have ever been
 /// initialized upon reaching a particular point in the control flow
-/// for a function, without an intervening `Storage Dead`.
+/// for a function, without an intervening `StorageDead`.
 ///
 /// This dataflow is used to determine if an immutable local variable may
 /// be assigned to.