Uh oh!
There was an error while loading. Please reload this page.
Use LocalDefId instead of HirId for reachable_set elements. - #74346
Conversation
eddyb
commented
Jul 14, 2020
@bors try @rust-timer queue |
rust-timer
commented
Jul 14, 2020
Awaiting bors try build completion |
bors
commented
Jul 14, 2020
⌛ Trying commit 6716c0e4207bfb5e4fa845e097d2c288bc98277e with merge 902ba0f9165e2d3491f89552b03ad7ba8d26e9a8... |
bors
commented
Jul 15, 2020
☀️ Try build successful - checks-actions, checks-azure |
rust-timer
commented
Jul 15, 2020
Queued 902ba0f9165e2d3491f89552b03ad7ba8d26e9a8 with parent 23744c8, future comparison URL. |
rust-timer
commented
Jul 15, 2020
Finished benchmarking try commit (902ba0f9165e2d3491f89552b03ad7ba8d26e9a8): comparison url. |
eddyb
commented
Jul 15, 2020
Mostly neutral, so this is more of a cleanup PR than an optimization one. |
eddyb
commented
Jul 21, 2020
Somehow this ended up without an assignee? |
nikomatsakis
commented
Jul 21, 2020
r=me but needs rebase |
eddyb
commented
Aug 16, 2020
@bors r=nikomatsakis |
bors
commented
Aug 16, 2020
📌 Commit 8b86b28 has been approved by |
Use LocalDefId instead of HirId for reachable_set elements. The only `HirId`s being tracked there that don't have matching `DefId`s are local variables, and that's an accident from rust-lang#44316 (where I preserved the old behavior, even if nothing relied on reachability tracking local variables).
Rollup of 10 pull requests Successful merges: - rust-lang#74204 (Don't visit foreign function bodies when lowering ast to hir) - rust-lang#74314 (rustc_typeck: construct {Closure,Generator}Substs more directly.) - rust-lang#74346 (Use LocalDefId instead of HirId for reachable_set elements.) - rust-lang#74399 (Move DelaySpanBugEmitted to ty::context) - rust-lang#75177 (Add regression test for issue-66768) - rust-lang#75223 (Add #[track_caller] to `Session::delay_span_bug`) - rust-lang#75423 (Move to intra-doc links for /library/core/src/hint.rs) - rust-lang#75485 (pin docs: add some forward references) - rust-lang#75569 (Bump minor version of emsdk to 1.38.47) - rust-lang#75596 (Switch to intra-doc links in /sys/windows/ext/{ffi,fs,process}.rs) Failed merges: r? @ghost
The only
HirIds being tracked there that don't have matchingDefIds are local variables, and that's an accident from #44316 (where I preserved the old behavior, even if nothing relied on reachability tracking local variables).