@@ -2093,6 +2093,8 @@ options! {
20932093 "instrument the generated code to support LLVM source-based code coverage reports \
20942094 (note, the compiler build config must include `profiler = true`); \
20952095 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)" ) ,
20962098 link_arg: ( /* redirected to link_args */ ) = ( ( ) , parse_string_push, [ UNTRACKED ] ,
20972099 "a single extra argument to append to the linker invocation (can be used several times)" ) ,
20982100 link_args: Vec <String > = ( Vec :: new( ) , parse_list, [ UNTRACKED ] ,
@@ -2395,8 +2397,6 @@ options! {
23952397 `=skip-entry`
23962398 `=skip-exit`
23972399 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)" ) ,
24002400 layout_seed: Option <u64 > = ( None , parse_opt_number, [ TRACKED ] ,
24012401 "seed layout randomization" ) ,
24022402 link_directives: bool = ( true , parse_bool, [ TRACKED ] ,
0 commit comments