File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
compiler/rustc_session/src Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -1290,6 +1290,8 @@ options! {
1290
1290
(default: no)") ,
1291
1291
drop_tracking: bool = ( false , parse_bool, [ TRACKED ] ,
1292
1292
"enables drop tracking in generators (default: no)" ) ,
1293
+ drop_tracking_mir: bool = ( false , parse_bool, [ TRACKED ] ,
1294
+ "enables drop tracking on MIR in generators (default: no)" ) ,
1293
1295
dual_proc_macros: bool = ( false , parse_bool, [ TRACKED ] ,
1294
1296
"load proc macros for both target and host, but only link to the target (default: no)" ) ,
1295
1297
dump_dep_graph: bool = ( false , parse_bool, [ UNTRACKED ] ,
Original file line number Diff line number Diff line change 20
20
-Z dlltool=val -- import library generation tool (windows-gnu only)
21
21
-Z dont-buffer-diagnostics=val -- emit diagnostics rather than buffering (breaks NLL error downgrading, sorting) (default: no)
22
22
-Z drop-tracking=val -- enables drop tracking in generators (default: no)
23
+ -Z drop-tracking-mir=val -- enables drop tracking on MIR in generators (default: no)
23
24
-Z dual-proc-macros=val -- load proc macros for both target and host, but only link to the target (default: no)
24
25
-Z dump-dep-graph=val -- dump the dependency graph to $RUST_DEP_GRAPH (default: /tmp/dep_graph.gv) (default: no)
25
26
-Z dump-drop-tracking-cfg=val -- dump drop-tracking control-flow graph as a `.dot` file (default: no)
You can’t perform that action at this time.
0 commit comments