Skip to content
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

Upgrade Rust toolchain to 2024-10-31 #3668

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl<'a, 'tcx> PointsToAnalysis<'a, 'tcx> {
// and solves the dataflow problem, producing the cursor, which contains dataflow state for
// each instruction in the body.
let mut cursor =
analysis.into_engine(tcx, body).iterate_to_fixpoint().into_results_cursor(body);
analysis.iterate_to_fixpoint(tcx, body, Some(Self::NAME)).into_results_cursor(body);
// We collect dataflow state at each `Return` terminator to determine the full aliasing
// graph for the function. This is sound since those are the only places where the function
// finishes, so the dataflow state at those places will be a union of dataflow states
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# SPDX-License-Identifier: Apache-2.0 OR MIT

[toolchain]
channel = "nightly-2024-10-30"
channel = "nightly-2024-10-31"
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]
Loading