-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
rustc_mir: insert a dummy access to places being matched on, when building MIR. #48092
Conversation
4282b4c
to
8af134e
Compare
📌 Commit 8af134e has been approved by |
@bors p=1 -- high priority fix |
@bors p=5 |
⌛ Testing commit 8af134e with merge 36a3cf12bfedf203399976f6cebf562ffc0fbb64... |
💔 Test failed - status-travis |
@bors retry
|
⌛ Testing commit 8af134e with merge 8d9854a2a81f0cfec44c3e9990fef05b568ca9fc... |
💔 Test failed - status-appveyor |
@bors retry
|
⌛ Testing commit 8af134e with merge 89dca1522d45966ebf00973c98530bb726e9e24e... |
💔 Test failed - status-appveyor |
rustc_mir: insert a dummy access to places being matched on, when building MIR. Fixes #47412 by adding a `_dummy = Discriminant(place)` before each `match place {...}`. r? @nikomatsakis
☀️ Test successful - status-appveyor, status-travis |
@nikomatsakis We should figure out the backporting situation ASAP. |
Fixes #47412 by adding a
_dummy = Discriminant(place)
before eachmatch place {...}
.r? @nikomatsakis