You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of rust-lang#122140 - oli-obk:track_errors13, r=<try>
Run a single huge par_body_owners instead of many small ones after each other.
This improves parallel rustc parallelism by avoiding the bottleneck after each individual `par_body_owners` (because it needs to wait for queries to finish, so if there is one long running one, a lot of cores will be idle while waiting for the single query).
based on rust-lang#121500
= note: for more information, see issue #114447 <https://github.com/rust-lang/rust/issues/114447>
37
-
= note: this will be a hard error in the 2024 edition
38
-
= note: this mutable reference has lifetime `'static`, but if the static gets accessed (read or written) by any other means, or any other reference is created, then any further use of this mutable reference is Undefined Behavior
39
-
help: use `addr_of_mut!` instead to create a raw pointer
= note: for more information, see issue #114447 <https://github.com/rust-lang/rust/issues/114447>
91
+
= note: this will be a hard error in the 2024 edition
92
+
= note: this mutable reference has lifetime `'static`, but if the static gets accessed (read or written) by any other means, or any other reference is created, then any further use of this mutable reference is Undefined Behavior
93
+
help: use `addr_of_mut!` instead to create a raw pointer
0 commit comments