-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Remove arena's dependency on rustc_data_structures
#77962
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
r? @eddyb (rust_highfive has picked a reviewer for you, use r? to override) |
Maybe |
I am somewhat surprised to see it like this rather than an unlikely branch or whatever, but seems fine to do this. @bors r+ rollup=never in case of perf effects |
📌 Commit 52ff31a has been approved by |
This can have perf effects? 👀 |
☀️ Test successful - checks-actions, checks-azure |
Tested on commit rust-lang/rust@8e6f69a. Direct link to PR: <rust-lang/rust#77962> 🎉 rls on windows: test-fail → test-pass (cc @Xanewok).
Umm, I'm quite sure this PR didn't fix rls? :) |
rustc_arena
currently has a dependency onrustc_data_structures
because of a trivial "don't inline me" function. This PR copies that function and removes the dependency.