Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4352de4

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

File tree

Expand file treeCollapse file tree

20 files changed

+1976
-614
lines changed
Filter options
Expand file treeCollapse file tree

20 files changed

+1976
-614
lines changed

‎Cargo.lock

Copy file name to clipboardExpand all lines: Cargo.lock
+1Lines changed: 1 addition & 0 deletions
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

Copy file name to clipboardExpand all lines: compiler/rustc_abi/src/layout/coroutine.rs
+1-1Lines changed: 1 addition & 1 deletion
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

Copy file name to clipboardExpand all lines: compiler/rustc_index/Cargo.toml
+1Lines changed: 1 addition & 0 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.