Skip to content

Commit f5bf006

Browse files
committed
update toolchain to 2025-11-13, fails
1 parent 902d444 commit f5bf006

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

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-2025-11-02"
22+
channel = "nightly-2025-11-13"
2323
components = ["rust-src", "rustc-dev", "llvm-tools"]
24-
# commit_hash = bd3ac0330018c23b111bbee176f32c377be7b319"#;
24+
# commit_hash = 01867557cd7dbe256a031a7b8e28d05daecd75ab"#;
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/builder_methods.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1917,6 +1917,7 @@ impl<'a, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'tcx> {
19171917
OperandRef {
19181918
val,
19191919
layout: place.layout,
1920+
move_annotation: None,
19201921
}
19211922
}
19221923

crates/rustc_codegen_spirv/src/builder/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ impl<'a, 'tcx> CoverageInfoBuilderMethods<'tcx> for Builder<'a, 'tcx> {
174174
fn add_coverage(&mut self, _instance: Instance<'tcx>, _kind: &CoverageKind) {}
175175
}
176176

177-
impl<'a, 'tcx> DebugInfoBuilderMethods for Builder<'a, 'tcx> {
177+
impl<'a, 'tcx> DebugInfoBuilderMethods<'_> for Builder<'a, 'tcx> {
178178
fn dbg_var_addr(
179179
&mut self,
180180
_dbg_var: Self::DIVariable,

crates/rustc_codegen_spirv/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
// HACK(eddyb) start of `rustc_codegen_ssa` crate-level attributes (see `build.rs`).
2-
#![allow(internal_features)]
32
#![allow(rustc::diagnostic_outside_of_impl)]
43
#![allow(rustc::untranslatable_diagnostic)]
54
#![feature(assert_matches)]
65
#![feature(box_patterns)]
76
#![feature(file_buffered)]
87
#![feature(if_let_guard)]
98
#![feature(negative_impls)]
10-
#![feature(rustdoc_internals)]
119
#![feature(string_from_utf8_lossy_owned)]
1210
#![feature(trait_alias)]
1311
#![feature(try_blocks)]

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-2025-11-02"
2+
channel = "nightly-2025-11-13"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]
4-
# commit_hash = bd3ac0330018c23b111bbee176f32c377be7b319
4+
# commit_hash = 01867557cd7dbe256a031a7b8e28d05daecd75ab
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)