@@ -1630,8 +1630,6 @@ options! {
16301630 "only allow the listed language features to be enabled in code (comma separated)" ) ,
16311631 always_encode_mir: bool = ( false , parse_bool, [ TRACKED ] ,
16321632 "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)" ) ,
16351633 assert_incr_state: Option <String > = ( None , parse_opt_string, [ UNTRACKED ] ,
16361634 "assert that the incremental cache is in given state: \
16371635 either `loaded` or `not-loaded`.") ,
@@ -2107,6 +2105,8 @@ written to standard error output)"),
21072105 "Generate sync unwind tables instead of async unwind tables (default: no)" ) ,
21082106 validate_mir: bool = ( false , parse_bool, [ UNTRACKED ] ,
21092107 "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)" ) ,
21102110 #[ rustc_lint_opt_deny_field_access( "use `Session::verbose_internals` instead of this field" ) ]
21112111 verbose_internals: bool = ( false , parse_bool, [ TRACKED_NO_CRATE_HASH ] ,
21122112 "in general, enable more debug printouts (default: no)" ) ,
0 commit comments