Skip to content

Commit 4352de4

Browse files
committed
Auto merge of rust-lang#113382 - lqd:test-mcp510, r=<try>
[perf] test MCP510 r? `@ghost`
2 parents e964cca + d8a4405 commit 4352de4

File tree

20 files changed

+1976
-614
lines changed

20 files changed

+1976
-614
lines changed

Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -3838,6 +3838,7 @@ dependencies = [
38383838
name = "rustc_index"
38393839
version = "0.0.0"
38403840
dependencies = [
3841+
"itertools",
38413842
"rustc_index_macros",
38423843
"rustc_macros",
38433844
"rustc_serialize",

compiler/rustc_abi/src/layout/coroutine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ fn coroutine_saved_local_eligibility<VariantIdx: Idx, FieldIdx: Idx, LocalIdx: I
120120
for assignment in assignments.iter_mut() {
121121
*assignment = Ineligible(None);
122122
}
123-
ineligible_locals.insert_all();
123+
ineligible_locals.insert_all(nb_locals);
124124
}
125125
}
126126

compiler/rustc_index/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition = "2024"
55

66
[dependencies]
77
# tidy-alphabetical-start
8+
itertools = "0.12"
89
rustc_index_macros = { path = "../rustc_index_macros" }
910
rustc_macros = { path = "../rustc_macros", optional = true }
1011
rustc_serialize = { path = "../rustc_serialize", optional = true }

0 commit comments

Comments
 (0)