@@ -1144,9 +1144,9 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
11441144 lto: LtoCli = ( LtoCli :: Unspecified , parse_lto, [ TRACKED ] ,
11451145 "perform LLVM link-time optimizations" ) ,
11461146 target_cpu: Option <String > = ( None , parse_opt_string, [ TRACKED ] ,
1147- "select target processor (rustc --print target-cpus for details)" ) ,
1147+ "select target processor (` rustc --print target-cpus` for details)" ) ,
11481148 target_feature: String = ( String :: new( ) , parse_string, [ TRACKED ] ,
1149- "target specific attributes (rustc --print target-features for details)" ) ,
1149+ "target specific attributes (` rustc --print target-features` for details)" ) ,
11501150 passes: Vec <String > = ( Vec :: new( ) , parse_list, [ TRACKED ] ,
11511151 "a list of extra LLVM passes to run (space separated)" ) ,
11521152 llvm_args: Vec <String > = ( Vec :: new( ) , parse_list, [ TRACKED ] ,
@@ -1172,9 +1172,9 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
11721172 no_redzone: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
11731173 "disable the use of the redzone" ) ,
11741174 relocation_model: Option <String > = ( None , parse_opt_string, [ TRACKED ] ,
1175- "choose the relocation model to use (rustc --print relocation-models for details)" ) ,
1175+ "choose the relocation model to use (` rustc --print relocation-models` for details)" ) ,
11761176 code_model: Option <String > = ( None , parse_opt_string, [ TRACKED ] ,
1177- "choose the code model to use (rustc --print code-models for details)" ) ,
1177+ "choose the code model to use (` rustc --print code-models` for details)" ) ,
11781178 metadata: Vec <String > = ( Vec :: new( ) , parse_list, [ TRACKED ] ,
11791179 "metadata to mangle symbol names with" ) ,
11801180 extra_filename: String = ( String :: new( ) , parse_string, [ UNTRACKED ] ,
@@ -1184,7 +1184,7 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
11841184 remark: Passes = ( Passes :: Some ( Vec :: new( ) ) , parse_passes, [ UNTRACKED ] ,
11851185 "print remarks for these optimization passes (space separated, or \" all\" )" ) ,
11861186 no_stack_check: bool = ( false , parse_bool, [ UNTRACKED ] ,
1187- "the --no-stack-check flag is deprecated and does nothing" ) ,
1187+ "the ` --no-stack-check` flag is deprecated and does nothing" ) ,
11881188 debuginfo: Option <usize > = ( None , parse_opt_uint, [ TRACKED ] ,
11891189 "debug info emission level, 0 = no debug info, 1 = line tables only, \
11901190 2 = full debug info with variable and type information") ,
@@ -1400,9 +1400,9 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
14001400 thinlto: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
14011401 "enable ThinLTO when possible" ) ,
14021402 inline_in_all_cgus: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
1403- "control whether `#[inline]` functions are in all cgus " ) ,
1403+ "control whether `#[inline]` functions are in all CGUs " ) ,
14041404 tls_model: Option <String > = ( None , parse_opt_string, [ TRACKED ] ,
1405- "choose the TLS model to use (rustc --print tls-models for details)" ) ,
1405+ "choose the TLS model to use (` rustc --print tls-models` for details)" ) ,
14061406 saturating_float_casts: bool = ( false , parse_bool, [ TRACKED ] ,
14071407 "make float->int casts UB-free: numbers outside the integer type's range are clipped to \
14081408 the max/min integer respectively, and NaN is mapped to 0") ,
0 commit comments