-
Notifications
You must be signed in to change notification settings - Fork 16
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
Update to nightly-2023-11-25 #14
Conversation
@@ -650,7 +654,8 @@ fn place_projection_conflict<'tcx>( | |||
| ProjectionElem::ConstantIndex { .. } | |||
| ProjectionElem::OpaqueCast { .. } | |||
| ProjectionElem::Subslice { .. } | |||
| ProjectionElem::Downcast(..), | |||
| ProjectionElem::Downcast(..) | |||
| ProjectionElem::Subtype(..), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if the changes in this file are correct.
Locally I'm getting a test failure which looks like UB or a miscompilation somewhere. Basically for the |
Thanks for the PR. (Just curious, are you using rustc_plugin for something?) I will handle bumping the nightly (see #16). I decided to delete the entire |
I was looking into updating flowistry to the latest rustc version. I have been working on spme signficant refactors to the driver interface and wanted to make sure I wouldn't break flowistry. |
Sorry I let this drop, but I'll just add -- @bjorn3 don't worry about breaking Flowistry, I am very used to it breaking every time the compiler updates 🙃 a changelog is more than enough! |
In this case it is a non-trivial change of the rustc_driver interface that I fear will break flowistry in a way that could potentially require a rustc change to fix it again. To be precise I want to get rid of the rustc_driver query interface. |
Got it. If you want to test anything, I just updated the dev branch of Flowistry to nightly-2024-01-06. |
No description provided.