@@ -2093,6 +2093,8 @@ options! {
2093
2093
"instrument the generated code to support LLVM source-based code coverage reports \
2094
2094
(note, the compiler build config must include `profiler = true`); \
2095
2095
implies `-C symbol-mangling-version=v0`") ,
2096
+ jump_tables: bool = ( true , parse_bool, [ TRACKED ] ,
2097
+ "allow jump table and lookup table generation from switch case lowering (default: yes)" ) ,
2096
2098
link_arg: ( /* redirected to link_args */ ) = ( ( ) , parse_string_push, [ UNTRACKED ] ,
2097
2099
"a single extra argument to append to the linker invocation (can be used several times)" ) ,
2098
2100
link_args: Vec <String > = ( Vec :: new( ) , parse_list, [ UNTRACKED ] ,
@@ -2395,8 +2397,6 @@ options! {
2395
2397
`=skip-entry`
2396
2398
`=skip-exit`
2397
2399
Multiple options can be combined with commas." ) ,
2398
- jump_tables: bool = ( true , parse_bool, [ TRACKED ] ,
2399
- "allow jump table and lookup table generation from switch case lowering (default: yes)" ) ,
2400
2400
layout_seed: Option <u64 > = ( None , parse_opt_number, [ TRACKED ] ,
2401
2401
"seed layout randomization" ) ,
2402
2402
link_directives: bool = ( true , parse_bool, [ TRACKED ] ,
0 commit comments