Commit a8e1186
committed
Auto merge of rust-lang#132435 - workingjubilee:rollup-3mgogw9, r=workingjubilee
Rollup of 9 pull requests
Successful merges:
- rust-lang#131168 (Fix `target_os` for `mipsel-sony-psx`)
- rust-lang#132209 (Fix validation when lowering `?` trait bounds)
- rust-lang#132294 (Bump Fuchsia)
- rust-lang#132357 (Improve missing_abi lint)
- rust-lang#132385 (compiler: Move `rustc_target::spec::abi::Abi` to `rustc_abi::ExternAbi`)
- rust-lang#132403 (continue `TypingMode` refactor)
- rust-lang#132417 (macOS: Document the difference between Clang's `-darwin` and `-macosx` targets)
- rust-lang#132421 (Remove `""` case from RISC-V `llvm_abiname` match statement)
- rust-lang#132422 (llvm: Match new LLVM 128-bit integer alignment on sparc)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
75 files changed
+364
-220
lines changed- compiler
- rustc_abi
- src
- extern_abi
- rustc_ast_passes/src
- rustc_ast/src
- rustc_codegen_llvm/src
- rustc_codegen_ssa/src/back
- rustc_const_eval/src
- check_consts
- interpret
- util
- rustc_hir_analysis/src/hir_ty_lowering
- rustc_hir_pretty
- src
- rustc_lint_defs
- src
- rustc_lint
- src
- rustc_middle/src/mir
- rustc_mir_build
- src
- build
- custom/parse
- expr
- matches
- thir
- cx
- pattern
- rustc_mir_transform/src
- rustc_parse/src/parser
- rustc_target/src/spec
- targets
- rustc_trait_selection/src/traits
- query
- rustc_type_ir/src
- src
- ci/docker/host-x86_64/x86_64-fuchsia
- doc/rustc/src/platform-support
- tools/clippy/clippy_utils/src
- tests/ui
- check-cfg
- impl-trait/precise-capturing
- issues
- lint
- trait-bounds
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
75 files changed
+364
-220
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3204 | 3204 | | |
3205 | 3205 | | |
3206 | 3206 | | |
| 3207 | + | |
3207 | 3208 | | |
3208 | 3209 | | |
3209 | 3210 | | |
| 3211 | + | |
3210 | 3212 | | |
3211 | 3213 | | |
3212 | 3214 | | |
| |||
3749 | 3751 | | |
3750 | 3752 | | |
3751 | 3753 | | |
| 3754 | + | |
3752 | 3755 | | |
3753 | 3756 | | |
3754 | 3757 | | |
3755 | 3758 | | |
3756 | | - | |
3757 | 3759 | | |
3758 | 3760 | | |
3759 | 3761 | | |
| |||
3938 | 3940 | | |
3939 | 3941 | | |
3940 | 3942 | | |
| 3943 | + | |
3941 | 3944 | | |
3942 | 3945 | | |
3943 | 3946 | | |
3944 | 3947 | | |
3945 | 3948 | | |
3946 | 3949 | | |
3947 | 3950 | | |
3948 | | - | |
3949 | 3951 | | |
3950 | 3952 | | |
3951 | 3953 | | |
| |||
4054 | 4056 | | |
4055 | 4057 | | |
4056 | 4058 | | |
| 4059 | + | |
4057 | 4060 | | |
4058 | 4061 | | |
4059 | 4062 | | |
| |||
4069 | 4072 | | |
4070 | 4073 | | |
4071 | 4074 | | |
4072 | | - | |
4073 | 4075 | | |
4074 | 4076 | | |
4075 | 4077 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| 12 | + | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
| 16 | + | |
15 | 17 | | |
16 | 18 | | |
17 | 19 | | |
| |||
22 | 24 | | |
23 | 25 | | |
24 | 26 | | |
| 27 | + | |
25 | 28 | | |
26 | 29 | | |
| 30 | + | |
27 | 31 | | |
28 | 32 | | |
29 | 33 | | |
| |||
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
| 11 | + | |
10 | 12 | | |
11 | 13 | | |
12 | | - | |
| 14 | + | |
13 | 15 | | |
14 | 16 | | |
15 | 17 | | |
| |||
File renamed without changes.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
| 4 | + | |
4 | 5 | | |
5 | 6 | | |
6 | 7 | | |
| |||
28 | 29 | | |
29 | 30 | | |
30 | 31 | | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
31 | 35 | | |
32 | 36 | | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
33 | 41 | | |
34 | 42 | | |
35 | 43 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2810 | 2810 | | |
2811 | 2811 | | |
2812 | 2812 | | |
| 2813 | + | |
| 2814 | + | |
2813 | 2815 | | |
2814 | 2816 | | |
2815 | 2817 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
525 | 525 | | |
526 | 526 | | |
527 | 527 | | |
528 | | - | |
| 528 | + | |
529 | 529 | | |
530 | 530 | | |
531 | 531 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
366 | 366 | | |
367 | 367 | | |
368 | 368 | | |
369 | | - | |
| 369 | + | |
370 | 370 | | |
371 | 371 | | |
372 | 372 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
677 | 677 | | |
678 | 678 | | |
679 | 679 | | |
680 | | - | |
681 | | - | |
682 | | - | |
| 680 | + | |
| 681 | + | |
683 | 682 | | |
684 | 683 | | |
685 | 684 | | |
| |||
953 | 952 | | |
954 | 953 | | |
955 | 954 | | |
956 | | - | |
| 955 | + | |
957 | 956 | | |
958 | 957 | | |
959 | 958 | | |
| |||
977 | 976 | | |
978 | 977 | | |
979 | 978 | | |
980 | | - | |
| 979 | + | |
981 | 980 | | |
982 | 981 | | |
983 | 982 | | |
| |||
1350 | 1349 | | |
1351 | 1350 | | |
1352 | 1351 | | |
1353 | | - | |
| 1352 | + | |
1354 | 1353 | | |
1355 | 1354 | | |
1356 | 1355 | | |
1357 | 1356 | | |
1358 | 1357 | | |
1359 | | - | |
| 1358 | + | |
1360 | 1359 | | |
1361 | 1360 | | |
1362 | 1361 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
148 | 148 | | |
149 | 149 | | |
150 | 150 | | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
151 | 156 | | |
152 | 157 | | |
153 | 158 | | |
| |||
0 commit comments