@@ -1144,9 +1144,9 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
1144
1144
lto: LtoCli = (LtoCli::Unspecified, parse_lto, [TRACKED],
1145
1145
"perform LLVM link-time optimizations"),
1146
1146
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)"),
1148
1148
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)"),
1150
1150
passes: Vec<String> = (Vec::new(), parse_list, [TRACKED],
1151
1151
"a list of extra LLVM passes to run (space separated)"),
1152
1152
llvm_args: Vec<String> = (Vec::new(), parse_list, [TRACKED],
@@ -1172,9 +1172,9 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
1172
1172
no_redzone: Option<bool> = (None, parse_opt_bool, [TRACKED],
1173
1173
"disable the use of the redzone"),
1174
1174
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)"),
1176
1176
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)"),
1178
1178
metadata: Vec<String> = (Vec::new(), parse_list, [TRACKED],
1179
1179
"metadata to mangle symbol names with"),
1180
1180
extra_filename: String = (String::new(), parse_string, [UNTRACKED],
@@ -1184,7 +1184,7 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
1184
1184
remark: Passes = (Passes::Some(Vec::new()), parse_passes, [UNTRACKED],
1185
1185
"print remarks for these optimization passes (space separated, or \"all\")"),
1186
1186
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"),
1188
1188
debuginfo: Option<usize> = (None, parse_opt_uint, [TRACKED],
1189
1189
"debug info emission level, 0 = no debug info, 1 = line tables only, \
1190
1190
2 = full debug info with variable and type information"),
@@ -1400,9 +1400,9 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
1400
1400
thinlto: Option<bool> = (None, parse_opt_bool, [TRACKED],
1401
1401
"enable ThinLTO when possible"),
1402
1402
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 "),
1404
1404
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)"),
1406
1406
saturating_float_casts: bool = (false, parse_bool, [TRACKED],
1407
1407
"make float->int casts UB-free: numbers outside the integer type's range are clipped to \
1408
1408
the max/min integer respectively, and NaN is mapped to 0"),
0 commit comments