-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Commit 5264bc9
Auto merge of #143305 - jhpratt:rollup-t7e7uhj, r=jhpratt
Rollup of 12 pull requests
Successful merges:
- #141829 (Specialize sleep_until implementation for unix (except mac))
- #141847 (Explain `TOCTOU` on the top of `std::fs`, and reference it in functions)
- #142138 (Add `Vec::into_chunks`)
- #142321 (Expose elf abi on ppc64 targets)
- #142568 (Use the .drectve section for exporting symbols from dlls on Windows)
- #142886 (ci: aarch64-gnu: Stop skipping `panic_abort_doc_tests`)
- #143038 (avoid suggesting traits from private dependencies)
- #143194 (fix bitcast of single-element SIMD vectors)
- #143206 (Align attr fixes)
- #143258 (Don't recompute `DisambiguatorState` for every RPITIT in trait definition)
- #143260 (Use the correct export kind for __rust_alloc_error_handler_should_panic)
- #143274 (ci: support optional jobs)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
60 files changed
+762
-192
lines changed- compiler
- rustc_codegen_ssa/src
- back
- mir
- rustc_hir_analysis/src/hir_ty_lowering
- rustc_hir_typeck/src/method
- rustc_middle/src
- query
- ty
- rustc_passes
- src
- rustc_smir/src/rustc_smir
- rustc_target/src/spec/targets
- rustc_trait_selection/src/error_reporting/traits
- rustc_ty_utils/src
- library
- alloc/src/vec
- rustc-std-workspace-core
- std
- src
- sys/pal
- hermit
- itron
- sgx
- teeos
- uefi
- unix
- unsupported
- wasi
- wasm/atomics
- windows
- xous
- thread
- tests
- src
- ci
- citool
- src
- jobs
- tests
- docker/host-aarch64/aarch64-gnu
- github-actions
- librustdoc
- clean
- tests
- codegen
- ui
- attributes
- check-cfg
- linking
- typeck
- auxiliary
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
60 files changed
+762
-192
lines changedLines changed: 42 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1957 | 1957 |
| |
1958 | 1958 |
| |
1959 | 1959 |
| |
1960 | - | ||
1960 | + | ||
1961 | + | ||
1962 | + | ||
1961 | 1963 |
| |
1962 | - | ||
1964 | + | ||
1963 | 1965 |
| |
1964 | 1966 |
| |
1965 | 1967 |
| |
| |||
1996 | 1998 |
| |
1997 | 1999 |
| |
1998 | 2000 |
| |
1999 | - | ||
2001 | + | ||
2000 | 2002 |
| |
2001 | 2003 |
| |
2002 | 2004 |
| |
| |||
2054 | 2056 |
| |
2055 | 2057 |
| |
2056 | 2058 |
| |
2059 | + | ||
2060 | + | ||
2061 | + | ||
2062 | + | ||
2063 | + | ||
2064 | + | ||
2065 | + | ||
2066 | + | ||
2067 | + | ||
2068 | + | ||
2069 | + | ||
2070 | + | ||
2071 | + | ||
2072 | + | ||
2073 | + | ||
2074 | + | ||
2075 | + | ||
2076 | + | ||
2077 | + | ||
2078 | + | ||
2079 | + | ||
2080 | + | ||
2081 | + | ||
2082 | + | ||
2083 | + | ||
2084 | + | ||
2085 | + | ||
2086 | + | ||
2087 | + | ||
2088 | + | ||
2089 | + | ||
2090 | + | ||
2091 | + | ||
2092 | + | ||
2093 | + | ||
2057 | 2094 |
| |
2058 | 2095 |
| |
2059 | 2096 |
| |
| |||
2228 | 2265 |
| |
2229 | 2266 |
| |
2230 | 2267 |
| |
2268 | + | ||
2231 | 2269 |
| |
2270 | + | ||
2232 | 2271 |
| |
2233 | 2272 |
| |
2234 | 2273 |
| |
|
Lines changed: 4 additions & 44 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1097 | 1097 |
| |
1098 | 1098 |
| |
1099 | 1099 |
| |
1100 | - | ||
1101 | - | ||
1102 | - | ||
1103 | - | ||
1104 | - | ||
1105 | - | ||
1106 | - | ||
1107 | - | ||
1108 | - | ||
1109 | - | ||
1110 | - | ||
1111 | - | ||
1112 | 1100 |
| |
1113 | 1101 |
| |
1114 | - | ||
1115 | - | ||
1116 | - | ||
1102 | + | ||
1103 | + | ||
1104 | + | ||
1117 | 1105 |
| |
1118 | - | ||
1119 | - | ||
1120 | - | ||
1121 | - | ||
1122 | - | ||
1123 | - | ||
1124 | - | ||
1125 | - | ||
1126 | - | ||
1127 | - | ||
1128 | - | ||
1129 | - | ||
1130 | - | ||
1131 | - | ||
1132 | - | ||
1133 | - | ||
1134 | - | ||
1135 | - | ||
1136 | - | ||
1137 | - | ||
1138 | - | ||
1139 | - | ||
1140 | - | ||
1141 | - | ||
1142 | - | ||
1143 | - | ||
1144 | - | ||
1145 | - | ||
1146 | - | ||
1106 | + | ||
1147 | 1107 |
| |
1148 | 1108 |
| |
1149 | 1109 |
| |
|
Lines changed: 11 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
219 | 219 |
| |
220 | 220 |
| |
221 | 221 |
| |
222 | - | ||
222 | + | ||
223 | 223 |
| |
224 | - | ||
224 | + | ||
225 | + | ||
226 | + | ||
227 | + | ||
228 | + | ||
229 | + | ||
225 | 230 |
| |
226 | - | ||
227 | - | ||
228 | - | ||
231 | + | ||
232 | + | ||
233 | + | ||
229 | 234 |
| |
230 | 235 |
| |
231 | 236 |
| |
| |||
234 | 239 |
| |
235 | 240 |
| |
236 | 241 |
| |
237 | - | ||
242 | + | ||
238 | 243 |
| |
239 | 244 |
| |
240 | 245 |
| |
|
Lines changed: 1 addition & 9 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
7 | - | ||
7 | + | ||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
| |||
109 | 109 |
| |
110 | 110 |
| |
111 | 111 |
| |
112 | - | ||
113 | - | ||
114 | - | ||
115 | - | ||
116 | - | ||
117 | - | ||
118 | - | ||
119 | - | ||
120 | 112 |
| |
121 | 113 |
| |
122 | 114 |
| |
|
Lines changed: 2 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1117 | 1117 |
| |
1118 | 1118 |
| |
1119 | 1119 |
| |
1120 | - | ||
1120 | + | ||
1121 | 1121 |
| |
1122 | 1122 |
| |
1123 | 1123 |
| |
| |||
1136 | 1136 |
| |
1137 | 1137 |
| |
1138 | 1138 |
| |
1139 | - | ||
1140 | - | ||
1141 | - | ||
1142 | - | ||
1143 | - | ||
1144 | - | ||
1145 | - | ||
1139 | + | ||
1146 | 1140 |
| |
1147 | 1141 |
| |
1148 | 1142 |
| |
|
Lines changed: 20 additions & 10 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1588 | 1588 |
| |
1589 | 1589 |
| |
1590 | 1590 |
| |
1591 | - | ||
1591 | + | ||
1592 | 1592 |
| |
1593 | 1593 |
| |
1594 | 1594 |
| |
| |||
2459 | 2459 |
| |
2460 | 2460 |
| |
2461 | 2461 |
| |
2462 | + | ||
2462 | 2463 |
| |
2463 | 2464 |
| |
2464 | 2465 |
| |
2465 | 2466 |
| |
2467 | + | ||
2466 | 2468 |
| |
2467 | 2469 |
| |
2468 | - | ||
2470 | + | ||
2469 | 2471 |
| |
2470 | 2472 |
| |
2471 | 2473 |
| |
| |||
2474 | 2476 |
| |
2475 | 2477 |
| |
2476 | 2478 |
| |
2477 | - | ||
2479 | + | ||
2478 | 2480 |
| |
2479 | 2481 |
| |
2480 | 2482 |
| |
| |||
2594 | 2596 |
| |
2595 | 2597 |
| |
2596 | 2598 |
| |
2597 | - | ||
2599 | + | ||
2598 | 2600 |
| |
2599 | 2601 |
| |
2600 | 2602 |
| |
2601 | 2603 |
| |
2602 | 2604 |
| |
2603 | - | ||
2604 | - | ||
2605 | - | ||
2606 | - | ||
2607 | - | ||
2605 | + | ||
2606 | + | ||
2607 | + | ||
2608 | + | ||
2609 | + | ||
2610 | + | ||
2611 | + | ||
2612 | + | ||
2613 | + | ||
2614 | + | ||
2615 | + | ||
2616 | + | ||
2617 | + | ||
2608 | 2618 |
| |
2609 | 2619 |
| |
2610 | 2620 |
| |
| |||
2627 | 2637 |
| |
2628 | 2638 |
| |
2629 | 2639 |
| |
2630 | - | ||
2640 | + | ||
2631 | 2641 |
| |
2632 | 2642 |
| |
2633 | 2643 |
| |
|
Lines changed: 4 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1725 | 1725 |
| |
1726 | 1726 |
| |
1727 | 1727 |
| |
1728 | - | ||
1728 | + | ||
1729 | 1729 |
| |
1730 | 1730 |
| |
1731 | 1731 |
| |
| |||
3481 | 3481 |
| |
3482 | 3482 |
| |
3483 | 3483 |
| |
3484 | - | ||
3484 | + | ||
3485 | 3485 |
| |
3486 | 3486 |
| |
3487 | + | ||
3487 | 3488 |
| |
3488 | 3489 |
| |
3489 | 3490 |
| |
| |||
4388 | 4389 |
| |
4389 | 4390 |
| |
4390 | 4391 |
| |
4391 | - | ||
4392 | + | ||
4392 | 4393 |
| |
4393 | 4394 |
| |
4394 | 4395 |
| |
|
Lines changed: 0 additions & 7 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1093 | 1093 |
| |
1094 | 1094 |
| |
1095 | 1095 |
| |
1096 | - | ||
1097 | - | ||
1098 | - | ||
1099 | - | ||
1100 | - | ||
1101 | - | ||
1102 | - | ||
1103 | 1096 |
| |
1104 | 1097 |
| |
1105 | 1098 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2288 | 2288 |
| |
2289 | 2289 |
| |
2290 | 2290 |
| |
2291 | - | ||
2291 | + | ||
2292 | 2292 |
| |
2293 | 2293 |
| |
2294 | 2294 |
| |
|
Lines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
16 | 20 |
| |
17 | 21 |
| |
18 | 22 |
| |
|
0 commit comments