We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 820bfff commit 5934e0aCopy full SHA for 5934e0a
compiler/rustc_mir_transform/src/validate.rs
@@ -97,6 +97,12 @@ impl<'tcx> crate::MirPass<'tcx> for Validator {
97
}
98
99
100
+/// This checker covers basic properties of the control-flow graph, (dis)allowed statements and terminators.
101
+/// Everything checked here must be stable under substitution of generic parameters. In other words,
102
+/// this is about the *structure* of the MIR, not the *contents*.
103
+///
104
+/// Everything that depends on types, or otherwise can be affected by generic parameters,
105
+/// must be checked in `TypeChecker`.
106
struct CfgChecker<'a, 'tcx> {
107
when: &'a str,
108
body: &'a Body<'tcx>,
0 commit comments