Skip to content

Commit

Permalink
Upgrade Rust toolchain to 2024-10-31 (#3668)
Browse files Browse the repository at this point in the history
Culprit upstream change: rust-lang/rust#132338

Resolves #3664 

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 and MIT licenses.
  • Loading branch information
zhassan-aws authored Oct 31, 2024
1 parent 1fe80f9 commit f3e3f33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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"]

0 comments on commit f3e3f33

Please sign in to comment.