Skip to content

Commit 7df0ab3

Browse files
committed
update to nightly-2026-06-25
1 parent 891443f commit 7df0ab3

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

crates/rustc_codegen_spirv/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ use std::{env, fs, mem};
1919
/// `cargo publish`. We need to figure out a way to do this properly, but let's hardcode it for now :/
2020
//const REQUIRED_RUST_TOOLCHAIN: &str = include_str!("../../rust-toolchain.toml");
2121
const REQUIRED_RUST_TOOLCHAIN: &str = r#"[toolchain]
22-
channel = "nightly-2026-06-13"
22+
channel = "nightly-2026-06-25"
2323
components = ["rust-src", "rustc-dev", "llvm-tools"]
24-
# commit_hash = 65407954098ca3c19f0d46092cb374b5d3e9dc3c"#;
24+
# commit_hash = f28ac764c36004fa6a6e098d15b4016a838c13c6"#;
2525

2626
fn rustc_output(arg: &str) -> Result<String, Box<dyn Error>> {
2727
let rustc = env::var("RUSTC").unwrap_or_else(|_| "rustc".into());

crates/rustc_codegen_spirv/src/builder/intrinsics.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,8 +413,6 @@ impl<'a, 'tcx> IntrinsicCallBuilderMethods<'tcx> for Builder<'a, 'tcx> {
413413

414414
fn va_start(&mut self, _val: Self::Value) {}
415415

416-
fn va_end(&mut self, _val: Self::Value) {}
417-
418416
fn retag_mem(&mut self, _place: Self::Value, _info: &RetagInfo<Self::Value>) {
419417
bug!("retag not supported")
420418
}

rust-toolchain.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[toolchain]
2-
channel = "nightly-2026-06-13"
2+
channel = "nightly-2026-06-25"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]
4-
# commit_hash = 65407954098ca3c19f0d46092cb374b5d3e9dc3c
4+
# commit_hash = f28ac764c36004fa6a6e098d15b4016a838c13c6
55

66
# Whenever changing the nightly channel, update the commit hash above, and
77
# change `REQUIRED_RUST_TOOLCHAIN` in `crates/rustc_codegen_spirv/build.rs` too.

0 commit comments

Comments
 (0)