forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit 1447f9d
Auto merge of rust-lang#122869 - matthiaskrgr:rollup-0navj4l, r=matthiaskrgr
Rollup of 9 pull requests
Successful merges:
- rust-lang#121619 (Experimental feature postfix match)
- rust-lang#122370 (Gracefully handle `AnonConst` in `diagnostic_hir_wf_check()`)
- rust-lang#122537 (interpret/allocation: fix aliasing issue in interpreter and refactor getters a bit)
- rust-lang#122542 (coverage: Clean up marker statements that aren't needed later)
- rust-lang#122800 (Add `NonNull::<[T]>::is_empty`.)
- rust-lang#122820 (Stop using `<DefId as Ord>` in various diagnostic situations)
- rust-lang#122847 (Suggest `RUST_MIN_STACK` workaround on overflow)
- rust-lang#122855 (Fix Itanium mangling usizes)
- rust-lang#122863 (add more ice tests )
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
73 files changed
+1200
-248
lines changed- compiler
- rustc_ast_lowering/src
- rustc_ast_passes/src
- rustc_ast_pretty/src/pprust/state
- rustc_ast/src
- rustc_builtin_macros/src
- assert
- deriving
- cmp
- rustc_codegen_llvm/src/coverageinfo
- rustc_const_eval/src
- interpret
- transform
- rustc_driver_impl/src
- rustc_expand/src
- rustc_feature/src
- rustc_hir_analysis/src
- rustc_hir/src
- rustc_interface/src
- rustc_lint/src
- rustc_middle
- src
- mir
- interpret
- ty
- rustc_mir_build/src/thir/pattern
- rustc_mir_transform/src
- rustc_parse/src/parser
- rustc_passes/src
- rustc_span/src
- rustc_symbol_mangling/src/typeid
- library/core/src/ptr
- src
- doc/unstable-book/src/language-features
- tools
- clippy
- clippy_lints/src
- clippy_utils/src
- rustfmt
- src
- tests
- source/postfix-match
- target/postfix-match
- tests
- mir-opt
- pretty
- ui
- const-generics
- generic_const_exprs
- const_prop
- feature-gates
- impl-trait
- match/postfix-match
- nll
- closure-requirements
- user-annotations
- type-alias-impl-trait
- wf
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
73 files changed
+1200
-248
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4236 | 4236 |
| |
4237 | 4237 |
| |
4238 | 4238 |
| |
4239 | + | ||
4239 | 4240 |
| |
4240 | 4241 |
| |
4241 | 4242 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1437 | 1437 |
| |
1438 | 1438 |
| |
1439 | 1439 |
| |
1440 | - | ||
1440 | + | ||
1441 | 1441 |
| |
1442 | 1442 |
| |
1443 | 1443 |
| |
| |||
1762 | 1762 |
| |
1763 | 1763 |
| |
1764 | 1764 |
| |
1765 | + | ||
1766 | + | ||
1767 | + | ||
1768 | + | ||
1769 | + | ||
1770 | + | ||
1771 | + | ||
1772 | + | ||
1773 | + | ||
1765 | 1774 |
| |
1766 | 1775 |
| |
1767 | 1776 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1425 | 1425 |
| |
1426 | 1426 |
| |
1427 | 1427 |
| |
1428 | - | ||
1428 | + | ||
1429 | 1429 |
| |
1430 | 1430 |
| |
1431 | 1431 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
923 | 923 |
| |
924 | 924 |
| |
925 | 925 |
| |
926 | - | ||
926 | + | ||
927 | 927 |
| |
928 | 928 |
| |
929 | 929 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
181 | 181 |
| |
182 | 182 |
| |
183 | 183 |
| |
184 | - | ||
184 | + | ||
185 | 185 |
| |
186 | 186 |
| |
187 | - | ||
187 | + | ||
188 | + | ||
189 | + | ||
190 | + | ||
188 | 191 |
| |
189 | 192 |
| |
190 | 193 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
564 | 564 |
| |
565 | 565 |
| |
566 | 566 |
| |
567 | + | ||
567 | 568 |
| |
568 | 569 |
| |
569 | 570 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | - | ||
3 | + | ||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
| |||
589 | 589 |
| |
590 | 590 |
| |
591 | 591 |
| |
592 | - | ||
592 | + | ||
593 | 593 |
| |
594 | 594 |
| |
595 | - | ||
596 | - | ||
597 | - | ||
595 | + | ||
596 | + | ||
597 | + | ||
598 | + | ||
599 | + | ||
600 | + | ||
601 | + | ||
602 | + | ||
603 | + | ||
604 | + | ||
605 | + | ||
606 | + | ||
607 | + | ||
598 | 608 |
| |
599 | 609 |
| |
600 | 610 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
245 | 245 |
| |
246 | 246 |
| |
247 | 247 |
| |
248 | - | ||
248 | + | ||
249 | 249 |
| |
250 | 250 |
| |
251 | 251 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
132 | 132 |
| |
133 | 133 |
| |
134 | 134 |
| |
135 | - | ||
135 | + | ||
136 | 136 |
| |
137 | 137 |
| |
138 | 138 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 | - | ||
6 | - | ||
5 | + | ||
7 | 6 |
| |
8 | 7 |
| |
9 | 8 |
| |
|
0 commit comments