File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -1133,7 +1133,7 @@ impl Config {
1133
1133
set ( & mut config. use_lld , rust. use_lld ) ;
1134
1134
set ( & mut config. lld_enabled , rust. lld ) ;
1135
1135
set ( & mut config. llvm_tools_enabled , rust. llvm_tools ) ;
1136
- config. rustc_parallel = rust. parallel_compiler . unwrap_or ( false ) ;
1136
+ config. rustc_parallel = rust. parallel_compiler . unwrap_or ( true ) ;
1137
1137
config. rustc_default_linker = rust. default_linker ;
1138
1138
config. musl_root = rust. musl_root . map ( PathBuf :: from) ;
1139
1139
config. save_toolstates = rust. save_toolstates . map ( PathBuf :: from) ;
Original file line number Diff line number Diff line change @@ -470,12 +470,6 @@ pub(crate) fn get_auto_trait_and_blanket_impls(
470
470
cx : & mut DocContext < ' _ > ,
471
471
item_def_id : DefId ,
472
472
) -> impl Iterator < Item = Item > {
473
- // FIXME: To be removed once `parallel_compiler` bugs are fixed!
474
- // More information in <https://github.com/rust-lang/rust/pull/106930>.
475
- if cfg ! ( parallel_compiler) {
476
- return vec ! [ ] . into_iter ( ) . chain ( vec ! [ ] . into_iter ( ) ) ;
477
- }
478
-
479
473
let auto_impls = cx
480
474
. sess ( )
481
475
. prof
You can’t perform that action at this time.
0 commit comments