@@ -1630,8 +1630,6 @@ options! {
1630
1630
"only allow the listed language features to be enabled in code (comma separated)" ) ,
1631
1631
always_encode_mir: bool = ( false , parse_bool, [ TRACKED ] ,
1632
1632
"encode MIR of all functions into the crate metadata (default: no)" ) ,
1633
- asm_comments: bool = ( false , parse_bool, [ TRACKED ] ,
1634
- "generate comments into the assembly (may change behavior) (default: no)" ) ,
1635
1633
assert_incr_state: Option <String > = ( None , parse_opt_string, [ UNTRACKED ] ,
1636
1634
"assert that the incremental cache is in given state: \
1637
1635
either `loaded` or `not-loaded`.") ,
@@ -2107,6 +2105,8 @@ written to standard error output)"),
2107
2105
"Generate sync unwind tables instead of async unwind tables (default: no)" ) ,
2108
2106
validate_mir: bool = ( false , parse_bool, [ UNTRACKED ] ,
2109
2107
"validate MIR after each transformation" ) ,
2108
+ verbose_asm: bool = ( false , parse_bool, [ TRACKED ] ,
2109
+ "add descriptive comments from LLVM to the assembly (may change behavior) (default: no)" ) ,
2110
2110
#[ rustc_lint_opt_deny_field_access( "use `Session::verbose_internals` instead of this field" ) ]
2111
2111
verbose_internals: bool = ( false , parse_bool, [ TRACKED_NO_CRATE_HASH ] ,
2112
2112
"in general, enable more debug printouts (default: no)" ) ,
0 commit comments