Skip to content

Commit

Permalink
finished patching rust-lang/rust#108293
Browse files Browse the repository at this point in the history
reuses rust-lang/rust#113089 and the corresponding nightly
  • Loading branch information
floriangru committed Jul 6, 2023
1 parent 0bf6ec0 commit f468e4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2023-06-25"
channel = "nightly-2023-06-29"
components = [ "rustfmt", "rustc-dev", "llvm-tools" ]
3 changes: 2 additions & 1 deletion creusot/src/extended_location.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use rustc_middle::mir::Location;
use rustc_mir_dataflow::{self as dataflow, Analysis, Results, ResultsCursor};
use rustc_mir_dataflow::{self as dataflow, Analysis, AnalysisResults, Results, ResultsCursor};
use std::borrow::Borrow;

// Dataflow locations
Expand Down Expand Up @@ -39,6 +39,7 @@ impl ExtendedLocation {
where
A: Analysis<'tcx, Direction = D>,
D: Dir,
R: AnalysisResults<'tcx, A>,
R: Borrow<Results<'tcx, A>>,
{
use ExtendedLocation::*;
Expand Down

0 comments on commit f468e4f

Please sign in to comment.