Skip to content

Commit

Permalink
Upgrade rust toolchain to 06-26 (model-checking#3299)
Browse files Browse the repository at this point in the history
Related change:
- rust-lang/rust@24e41f1d13


Resolves model-checking#3294

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
jaisnan authored Jun 27, 2024
1 parent 3adb262 commit 3b9665f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kani-compiler/src/kani_middle/intrinsics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl<'tcx> ModelIntrinsics<'tcx> {
let Operand::Constant(fn_def) = func else { unreachable!() };
fn_def.const_ = mirConst::from_value(
ConstValue::ZeroSized,
tcx.type_of(stub_id).instantiate(tcx, &new_gen_args),
tcx.type_of(stub_id).instantiate(tcx, &*new_gen_args),
);
} else {
debug!(?arg_ty, "replace_simd_bitmask failed");
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-06-25"
channel = "nightly-2024-06-26"
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]

0 comments on commit 3b9665f

Please sign in to comment.