@@ -2022,6 +2022,8 @@ options! {
20222022 "instrument the generated code to support LLVM source-based code coverage reports \
20232023 (note, the compiler build config must include `profiler = true`); \
20242024 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)"),
20252027 link_arg: (/* redirected to link_args */) = ((), parse_string_push, [UNTRACKED],
20262028 "a single extra argument to append to the linker invocation (can be used several times)"),
20272029 link_args: Vec<String> = (Vec::new(), parse_list, [UNTRACKED],
@@ -2324,8 +2326,6 @@ options! {
23242326 `=skip-entry`
23252327 `=skip-exit`
23262328 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)"),
23292329 layout_seed: Option<u64> = (None, parse_opt_number, [TRACKED],
23302330 "seed layout randomization"),
23312331 link_directives: bool = (true, parse_bool, [TRACKED],
0 commit comments