This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit 3700bb5
committed
Auto merge of rust-lang#127475 - jieyouxu:rollup-ayualfk, r=jieyouxu
Rollup of 12 pull requests
Successful merges:
- rust-lang#113128 (Support tail calls in mir via `TerminatorKind::TailCall`)
- rust-lang#126841 ([`macro_metavar_expr_concat`] Add support for literals)
- rust-lang#126881 (Make `NEVER_TYPE_FALLBACK_FLOWING_INTO_UNSAFE` a deny-by-default lint in edition 2024)
- rust-lang#126921 (Give VaList its own home)
- rust-lang#127276 (rustdoc: Remove OpaqueTy)
- rust-lang#127367 (Run alloc sync tests)
- rust-lang#127431 (Use field ident spans directly instead of the full field span in diagnostics on local fields)
- rust-lang#127437 (Uplift trait ref is knowable into `rustc_next_trait_solver`)
- rust-lang#127439 (Uplift elaboration into `rustc_type_ir`)
- rust-lang#127451 (Improve `run-make/output-type-permutations` code and improve `filename_not_in_denylist` API)
- rust-lang#127452 (Fix intrinsic const parameter counting with `effects`)
- rust-lang#127459 (rustdoc-json: add type/trait alias tests)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
167 files changed
+4381
-1830
lines changed- compiler
- rustc_borrowck/src
- polonius
- type_check
- rustc_codegen_cranelift/src
- rustc_codegen_ssa/src/mir
- rustc_const_eval/src
- check_consts
- interpret
- rustc_expand/src/mbe
- rustc_hir_analysis/src
- check
- coherence
- rustc_hir_typeck/src
- rustc_infer/src
- infer
- traits
- rustc_lint_defs/src
- rustc_lint/src
- rustc_middle/src
- mir
- traits
- ty
- print
- rustc_mir_build/src
- build
- expr
- rustc_mir_dataflow/src
- impls
- move_paths
- rustc_mir_transform/src
- coverage
- spans
- rustc_monomorphize/src
- rustc_next_trait_solver/src
- solve
- assembly
- eval_ctxt
- rustc_resolve/src
- late
- rustc_smir/src/rustc_smir/convert
- rustc_trait_selection/src
- solve
- traits
- select
- rustc_ty_utils/src
- rustc_type_ir/src
- library
- alloc/src
- core/src/ffi
- src
- librustdoc
- clean
- formats
- html/render
- json
- passes
- rustdoc-json-types
- tools
- clippy/clippy_utils/src
- jsondoclint/src
- miri
- src
- shims
- tests
- fail/tail_calls
- pass
- run-make-support/src
- tidy/src
- tests
- mir-opt
- run-make/output-type-permutations
- rustdoc-json
- ui
- explicit-tail-calls
- intrinsics
- lint
- macros
- macro-metavar-expr-concat
- rfc-3086-metavar-expr
- never_type
- parser
- resolve
- rfcs/rfc-2632-const-trait-impl/effects
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
167 files changed
+4381
-1830
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
727 | 727 | | |
728 | 728 | | |
729 | 729 | | |
| 730 | + | |
| 731 | + | |
| 732 | + | |
| 733 | + | |
| 734 | + | |
| 735 | + | |
730 | 736 | | |
731 | 737 | | |
732 | 738 | | |
| |||
813 | 819 | | |
814 | 820 | | |
815 | 821 | | |
| 822 | + | |
816 | 823 | | |
817 | | - | |
818 | | - | |
819 | 824 | | |
820 | 825 | | |
821 | 826 | | |
| |||
Lines changed: 6 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
125 | 125 | | |
126 | 126 | | |
127 | 127 | | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
128 | 134 | | |
129 | 135 | | |
130 | 136 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1352 | 1352 | | |
1353 | 1353 | | |
1354 | 1354 | | |
1355 | | - | |
| 1355 | + | |
| 1356 | + | |
| 1357 | + | |
| 1358 | + | |
| 1359 | + | |
| 1360 | + | |
| 1361 | + | |
| 1362 | + | |
1356 | 1363 | | |
1357 | 1364 | | |
1358 | 1365 | | |
| |||
1425 | 1432 | | |
1426 | 1433 | | |
1427 | 1434 | | |
1428 | | - | |
| 1435 | + | |
| 1436 | + | |
| 1437 | + | |
1429 | 1438 | | |
1430 | 1439 | | |
1431 | 1440 | | |
| |||
1443 | 1452 | | |
1444 | 1453 | | |
1445 | 1454 | | |
1446 | | - | |
| 1455 | + | |
1447 | 1456 | | |
1448 | 1457 | | |
1449 | 1458 | | |
| |||
1675 | 1684 | | |
1676 | 1685 | | |
1677 | 1686 | | |
| 1687 | + | |
| 1688 | + | |
| 1689 | + | |
| 1690 | + | |
| 1691 | + | |
1678 | 1692 | | |
1679 | 1693 | | |
1680 | 1694 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
491 | 491 | | |
492 | 492 | | |
493 | 493 | | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
494 | 499 | | |
495 | 500 | | |
496 | 501 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
567 | 567 | | |
568 | 568 | | |
569 | 569 | | |
| 570 | + | |
570 | 571 | | |
571 | 572 | | |
572 | 573 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
281 | 281 | | |
282 | 282 | | |
283 | 283 | | |
| 284 | + | |
284 | 285 | | |
285 | 286 | | |
286 | 287 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1389 | 1389 | | |
1390 | 1390 | | |
1391 | 1391 | | |
| 1392 | + | |
| 1393 | + | |
| 1394 | + | |
| 1395 | + | |
| 1396 | + | |
| 1397 | + | |
| 1398 | + | |
1392 | 1399 | | |
1393 | 1400 | | |
1394 | 1401 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
| 138 | + | |
| 139 | + | |
138 | 140 | | |
139 | 141 | | |
140 | 142 | | |
| |||
711 | 713 | | |
712 | 714 | | |
713 | 715 | | |
714 | | - | |
| 716 | + | |
| 717 | + | |
| 718 | + | |
| 719 | + | |
| 720 | + | |
| 721 | + | |
| 722 | + | |
| 723 | + | |
715 | 724 | | |
716 | 725 | | |
717 | 726 | | |
| |||
783 | 792 | | |
784 | 793 | | |
785 | 794 | | |
786 | | - | |
| 795 | + | |
787 | 796 | | |
788 | 797 | | |
789 | 798 | | |
| |||
830 | 839 | | |
831 | 840 | | |
832 | 841 | | |
833 | | - | |
| 842 | + | |
834 | 843 | | |
835 | 844 | | |
836 | 845 | | |
| |||
Lines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
| 111 | + | |
111 | 112 | | |
112 | 113 | | |
113 | 114 | | |
| |||
0 commit comments