Skip to content

Commit 5934e0a

Browse files
committed
MIR validation: add comment explaining the limitations of CfgChecker
1 parent 820bfff commit 5934e0a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

compiler/rustc_mir_transform/src/validate.rs

+6
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ impl<'tcx> crate::MirPass<'tcx> for Validator {
9797
}
9898
}
9999

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`.
100106
struct CfgChecker<'a, 'tcx> {
101107
when: &'a str,
102108
body: &'a Body<'tcx>,

0 commit comments

Comments
 (0)