-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Remove special case for ExprKind::Paren
in MutVisitor
#87284
Conversation
Fixes #87274 |
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit 208bc2d83fbcd478aacbd62b4f6f9f18f3d4379e with merge 2f692747360443b2e47774330701e5705186fcec... |
☀️ Try build successful - checks-actions |
Queued 2f692747360443b2e47774330701e5705186fcec with parent 8df945c, future comparison URL. |
Finished benchmarking try commit (2f692747360443b2e47774330701e5705186fcec): comparison url. Summary: This benchmark run did not return any significant changes. If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. @bors rollup=never |
@bors r+ rollup=maybe |
📌 Commit 208bc2d83fbcd478aacbd62b4f6f9f18f3d4379e has been approved by |
Oh, wait, could you fix the typo |
The special case breaks several useful invariants (`ExpnId`s are globally unique, and never change). This special case was added back in 2016 in rust-lang#34355
208bc2d
to
f9f238e
Compare
ExpnKind::Paren
in MutVisitor
ExprKind::Paren
in MutVisitor
@bors r=petrochenkov p=1 This unbreaks a perf benchmark |
📌 Commit f9f238e has been approved by |
☀️ Test successful - checks-actions |
The special case breaks several useful invariants (
ExpnId
s areglobally unique, and never change). This special case
was added back in 2016 in #34355
r? @petrochenkov