-
Notifications
You must be signed in to change notification settings - Fork 255
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 rustc
version incrementally to nightly-2022-12-06
#811
Open
kkysen
wants to merge
19
commits into
master
Choose a base branch
from
kkysen/update-rustc-incrementally
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
867db8b
Updated to `nightly-2022-08-22`, the latest version not requiring any…
kkysen 74f703f
Used `Default::default()` instead of `Vec::new()` so that `ThinVec::n…
kkysen 9416506
Updated to `nightly-2022-08-23` after the `Vec::new()` => `Default::d…
kkysen 9f4e406
Updated to `nightly-2022-08-29`, the latest version not requiring any…
kkysen a2738de
Updated to `nightly-2022-09-30`, changing `.basic_blocks()` => `.basi…
kkysen de457a9
Updated to `nightly-2022-09-08`, changing `StatementKind::{CopyNonOve…
kkysen 23d9928
`cargo clippy --fix` after the update to `nightly-2022-09-08`.
kkysen 848a7e9
Updated to `nightly-2022-09-17`, the latest version not requiring an…
kkysen bf95e95
`cargo clippy --fix && cargo fmt` after the update to `nightly-2022-0…
kkysen 4a740ab
In `c2rust_instrument::into_operand::make_const`, use `ConstantKind::…
kkysen 76be307
Updated to `nightly-2022-09-19`, which seems to change the PDG by eli…
kkysen 674d0e2
Updated to `nightly-2022-09-21`, adding a `match` arm for `Projection…
kkysen 5ea3998
Updated to `nightly-2022-10-08`, the latest version not requiring any…
kkysen 6ede894
`cargo clippy --fix` after the update to `nightly-2022-10-08`.
kkysen 78d36f2
Trivial `clippy` fixes after the update to `nightly-2022-10-08`.
kkysen 7fd06e3
Updated to `nightly-2022-10-09`, changing `CastKind{Misc => PtrToPtr}…
kkysen 9e6a899
Updated to `nightly-2022-12-06`, the latest version not requiring any…
kkysen 3bb66d6
`cargo clippy --fix && cargo fmt` after the update to `nightly-2022-1…
kkysen d835ba6
Trivial `clippy` fixes after the update to `nightly-2022-12-06`.
kkysen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Updated to
nightly-2022-09-19
, which seems to change the PDG by eli…
…ding `pointers::REALLOC` (the pointer to `realloc` used for an extra indirection to fool us) as `_`.
- Loading branch information
commit 76be3078892d5d3fd7c076568d447339070c265d
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "nightly-2022-09-17" | ||
channel = "nightly-2022-09-19" | ||
components = ["rustfmt-preview", "rustc-dev", "rust-src", "miri"] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Also commented on Slack: could we split this file into one per package? That way we can update some of them independently. E.g. I think
c2rust-analyze
andc2rust-pdg
could be on stable Rust.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.
c2rust-analyze
andc2rust-pdg
use rustc internals, so they need nightly.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.
For
c2rust-transpile
and it's dependencies, those can build on stable, butc2rust
, if it depends on things likec2rust-analyze
(it doesn't currently, but that was the future intention), I'm not sure how to haverust-toolchsin.toml
work there, as we want it to build on both nightly and stable.This is also an issue for
rav1d
, so figuring out how to do this would be nice.