@@ -2022,6 +2022,8 @@ options! {
2022
2022
"instrument the generated code to support LLVM source-based code coverage reports \
2023
2023
(note, the compiler build config must include `profiler = true`); \
2024
2024
implies `-C symbol-mangling-version=v0`") ,
2025
+ jump_tables: bool = ( true , parse_bool, [ TRACKED ] ,
2026
+ "Allow jump table and lookup table generation from switch case lowering (default: yes)" ) ,
2025
2027
link_arg: ( /* redirected to link_args */ ) = ( ( ) , parse_string_push, [ UNTRACKED ] ,
2026
2028
"a single extra argument to append to the linker invocation (can be used several times)" ) ,
2027
2029
link_args: Vec <String > = ( Vec :: new( ) , parse_list, [ UNTRACKED ] ,
@@ -2324,8 +2326,6 @@ options! {
2324
2326
`=skip-entry`
2325
2327
`=skip-exit`
2326
2328
Multiple options can be combined with commas." ) ,
2327
- jump_tables: bool = ( true , parse_bool, [ TRACKED ] ,
2328
- "Allow jump table and lookup table generation from switch case lowering (default: yes)" ) ,
2329
2329
layout_seed: Option <u64 > = ( None , parse_opt_number, [ TRACKED ] ,
2330
2330
"seed layout randomization" ) ,
2331
2331
link_directives: bool = ( true , parse_bool, [ TRACKED ] ,
0 commit comments