Skip to content

Commit e4ab512

Browse files
committed
sess: renable polymorphisation
This commit re-enables polymorphisation now that regressions have been fixed. Signed-off-by: David Wood <[email protected]>
1 parent 85fbf49 commit e4ab512

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_session/src/options.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -951,8 +951,8 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
951951
(default: PLT is disabled if full relro is enabled)"),
952952
polonius: bool = (false, parse_bool, [UNTRACKED],
953953
"enable polonius-based borrow-checker (default: no)"),
954-
polymorphize: bool = (false, parse_bool, [TRACKED],
955-
"perform polymorphization analysis"),
954+
polymorphize: bool = (true, parse_bool, [TRACKED],
955+
"perform polymorphization analysis"),
956956
pre_link_arg: (/* redirected to pre_link_args */) = ((), parse_string_push, [UNTRACKED],
957957
"a single extra argument to prepend the linker invocation (can be used several times)"),
958958
pre_link_args: Vec<String> = (Vec::new(), parse_list, [UNTRACKED],

0 commit comments

Comments
 (0)