File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
compiler/rustc_mir_dataflow/src Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -114,8 +114,13 @@ pub trait ValueAnalysis<'tcx> {
114
114
// (A2)
115
115
state. flood_with ( place. as_ref ( ) , self . map ( ) , Self :: Value :: bottom ( ) ) ;
116
116
}
117
+ StatementKind :: Retag ( ..) => {
118
+ // A retag modifies the provenance of references. Currently references are only
119
+ // tracked if `-Zunsound-mir-opts` is given, but this might change in the future.
120
+ // However, it is still unclear how retags should be handled:
121
+ // https://github.com/rust-lang/rust/pull/101168#discussion_r985304895
122
+ }
117
123
StatementKind :: Nop
118
- | StatementKind :: Retag ( ..)
119
124
| StatementKind :: FakeRead ( ..)
120
125
| StatementKind :: Coverage ( ..)
121
126
| StatementKind :: AscribeUserType ( ..) => ( ) ,
You can’t perform that action at this time.
0 commit comments