Auto merge of #141325 - tage64:thin_bit_set, r= · rust-lang/rust@693ccca (original) (raw)
20 files changed
lines changed
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -3855,6 +3855,7 @@ dependencies = [ | ||
| 3855 | 3855 | name = "rustc_index" |
| 3856 | 3856 | version = "0.0.0" |
| 3857 | 3857 | dependencies = [ |
| 3858 | +"itertools", | |
| 3858 | 3859 | "rustc_index_macros", |
| 3859 | 3860 | "rustc_macros", |
| 3860 | 3861 | "rustc_serialize", |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -120,7 +120,7 @@ fn coroutine_saved_local_eligibility<VariantIdx: Idx, FieldIdx: Idx, LocalIdx: I | ||
| 120 | 120 | for assignment in assignments.iter_mut() { |
| 121 | 121 | *assignment = Ineligible(None); |
| 122 | 122 | } |
| 123 | - ineligible_locals.insert_all(); | |
| 123 | + ineligible_locals.insert_all(nb_locals); | |
| 124 | 124 | } |
| 125 | 125 | } |
| 126 | 126 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -5,6 +5,7 @@ edition = "2024" | ||
| 5 | 5 | |
| 6 | 6 | [dependencies] |
| 7 | 7 | # tidy-alphabetical-start |
| 8 | +itertools = "0.12" | |
| 8 | 9 | rustc_index_macros = { path = "../rustc_index_macros" } |
| 9 | 10 | rustc_macros = { path = "../rustc_macros", optional = true } |
| 10 | 11 | rustc_serialize = { path = "../rustc_serialize", optional = true } |