Skip to content
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 @@ -137,7 +137,7 @@ impl<'tcx> Analysis<'tcx> for PointsToAnalysis<'_, 'tcx> {
/// Update current dataflow state based on the information we can infer from the given
/// statement.
fn apply_primary_statement_effect(
&mut self,
&self,
state: &mut Self::Domain,
statement: &Statement<'tcx>,
_location: Location,
Expand Down Expand Up @@ -184,7 +184,7 @@ impl<'tcx> Analysis<'tcx> for PointsToAnalysis<'_, 'tcx> {
}

fn apply_primary_terminator_effect<'mir>(
&mut self,
&self,
state: &mut Self::Domain,
terminator: &'mir Terminator<'tcx>,
location: Location,
Expand Down Expand Up @@ -337,7 +337,7 @@ impl<'tcx> Analysis<'tcx> for PointsToAnalysis<'_, 'tcx> {

/// We don't care about this and just need to implement this to implement the trait.
fn apply_call_return_effect(
&mut self,
&self,
_state: &mut Self::Domain,
_block: BasicBlock,
_return_places: CallReturnPlaces<'_, 'tcx>,
Expand Down Expand Up @@ -429,7 +429,7 @@ impl<'tcx> PointsToAnalysis<'_, 'tcx> {

/// Update the analysis state according to the regular function call.
fn apply_regular_call_effect(
&mut self,
&self,
state: &mut PointsToGraph<'tcx>,
instance: Instance<'tcx>,
args: &[Spanned<Operand<'tcx>>],
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-2025-10-31"
channel = "nightly-2025-11-03"
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]
Loading