-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Commit c8905ea
Auto merge of #147128 - matthiaskrgr:rollup-mqey4c4, r=matthiaskrgr
Rollup of 6 pull requests
Successful merges:
- #140482 (std::net: update tcp deferaccept delay type to Duration.)
- #141469 (Allow `&raw [mut | const]` for union field in safe code)
- #144197 (TypeTree support in autodiff)
- #146675 (Allow shared access to `Exclusive<T>` when `T: Sync`)
- #147113 (Reland "Add LSX accelerated implementation for source file analysis")
- #147120 (Fix --extra-checks=spellcheck to prevent cargo install every time)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
82 files changed
+1631
-62
lines changed- compiler
- rustc_ast/src/expand
- rustc_codegen_gcc/src
- intrinsic
- rustc_codegen_llvm/src
- back
- builder
- llvm
- rustc_codegen_ssa/src
- mir
- traits
- rustc_interface/src
- rustc_llvm/llvm-wrapper
- rustc_middle/src
- ty
- rustc_mir_build/src
- rustc_session/src
- rustc_span/src
- library
- core/src/sync
- std/src
- os/net/linux_ext
- sys/net/connection/socket
- src/tools
- miri/tests/pass/both_borrows
- tidy/src
- tests
- codegen-llvm/autodiff
- run-make/autodiff/type-trees
- array-typetree
- memcpy-typetree
- mixed-struct-typetree
- nott-flag
- recursion-typetree
- scalar-types
- f128-typetree
- f16-typetree
- f32-typetree
- f64-typetree
- i32-typetree
- slice-typetree
- struct-typetree
- tuple-typetree
- type-analysis/vec
- ui
- autodiff
- explicit-tail-calls
- impl-trait
- traits/next-solver
- union
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
82 files changed
+1631
-62
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 | + | ||
9 | 10 |
| |
10 | 11 |
| |
11 | 12 |
| |
| |||
84 | 85 |
| |
85 | 86 |
| |
86 | 87 |
| |
88 | + | ||
89 | + | ||
87 | 90 |
| |
88 | 91 |
| |
89 | 92 |
| |
| |||
275 | 278 |
| |
276 | 279 |
| |
277 | 280 |
| |
278 | - | ||
279 | - | ||
281 | + | ||
282 | + | ||
283 | + | ||
284 | + | ||
285 | + | ||
286 | + | ||
287 | + | ||
288 | + | ||
280 | 289 |
| |
281 | 290 |
| |
282 | 291 |
| |
283 | 292 |
| |
284 | 293 |
| |
285 | 294 |
| |
286 | - | ||
295 | + | ||
296 | + | ||
297 | + | ||
287 | 298 |
| |
288 | 299 |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
31 | 31 |
| |
32 | 32 |
| |
33 | 33 |
| |
34 | + | ||
34 | 35 |
| |
35 | 36 |
| |
36 | 37 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1383 | 1383 |
| |
1384 | 1384 |
| |
1385 | 1385 |
| |
1386 | + | ||
1386 | 1387 |
| |
1387 | 1388 |
| |
1388 | 1389 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
770 | 770 |
| |
771 | 771 |
| |
772 | 772 |
| |
773 | + | ||
773 | 774 |
| |
774 | 775 |
| |
775 | 776 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
246 | 246 |
| |
247 | 247 |
| |
248 | 248 |
| |
249 | + | ||
249 | 250 |
| |
250 | 251 |
| |
251 | 252 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
563 | 563 |
| |
564 | 564 |
| |
565 | 565 |
| |
566 | + | ||
567 | + | ||
566 | 568 |
| |
567 | 569 |
| |
568 | 570 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 | + | ||
5 | 6 |
| |
6 | 7 |
| |
7 | 8 |
| |
| |||
1107 | 1108 |
| |
1108 | 1109 |
| |
1109 | 1110 |
| |
1111 | + | ||
1110 | 1112 |
| |
1111 | 1113 |
| |
1112 | 1114 |
| |
1113 | 1115 |
| |
1114 | - | ||
1116 | + | ||
1115 | 1117 |
| |
1116 | 1118 |
| |
1117 | 1119 |
| |
| |||
1120 | 1122 |
| |
1121 | 1123 |
| |
1122 | 1124 |
| |
1123 | - | ||
1125 | + | ||
1126 | + | ||
1127 | + | ||
1128 | + | ||
1129 | + | ||
1130 | + | ||
1131 | + | ||
1132 | + | ||
1133 | + | ||
1134 | + | ||
1124 | 1135 |
| |
1125 | 1136 |
| |
1126 | 1137 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | 3 |
| |
4 | + | ||
4 | 5 |
| |
5 | 6 |
| |
6 | 7 |
| |
| |||
294 | 295 |
| |
295 | 296 |
| |
296 | 297 |
| |
298 | + | ||
297 | 299 |
| |
298 | 300 |
| |
299 | 301 |
| |
| |||
370 | 372 |
| |
371 | 373 |
| |
372 | 374 |
| |
375 | + | ||
376 | + | ||
377 | + | ||
378 | + | ||
373 | 379 |
| |
374 | 380 |
| |
375 | 381 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1212 | 1212 |
| |
1213 | 1213 |
| |
1214 | 1214 |
| |
1215 | + | ||
1216 | + | ||
1217 | + | ||
1215 | 1218 |
| |
1216 | 1219 |
| |
1217 | 1220 |
| |
| |||
1222 | 1225 |
| |
1223 | 1226 |
| |
1224 | 1227 |
| |
1228 | + | ||
1225 | 1229 |
| |
1226 | 1230 |
| |
1227 | 1231 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
68 | 68 |
| |
69 | 69 |
| |
70 | 70 |
| |
71 | + | ||
71 | 72 |
| |
72 | 73 |
| |
73 | 74 |
| |
|
0 commit comments