-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Commit c43786c
Auto merge of #141331 - matthiaskrgr:rollup-k0loxj6, r=matthiaskrgr
Rollup of 7 pull requests
Successful merges:
- #137759 (Add `std::os::unix::process::CommandExt::chroot` to safely chroot a child process)
- #140994 (replace `cc_detect::cc2ar` with `cc::try_get_archiver`)
- #141213 (Suggest use "{}", self.x instead of {self.x} when resolve x as field of `self`)
- #141283 (Allow `x perf` to find rustc.exe on Windows)
- #141284 (Allow trailing comma after argument in query definition)
- #141317 (typeck: catch `continue`s pointing to blocks)
- #141318 (Avoid creating an empty identifer in `Symbol::to_ident_string`.)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
29 files changed
+277
-201
lines changed- compiler
- rustc_hir_typeck/src
- rustc_macros/src
- rustc_mir_build/src/builder
- rustc_passes/src
- rustc_resolve/src/late
- rustc_span/src
- library/std/src
- os/unix
- sys/process/unix
- src
- bootstrap
- src
- core/build_steps
- utils
- cc_detect
- ci/docker/host-x86_64
- arm-android
- dist-android
- tests
- crashes
- ui
- extern
- label
- resolve
- suggestions
29 files changed
+277
-201
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
532 | 532 |
| |
533 | 533 |
| |
534 | 534 |
| |
535 | - | ||
536 | - | ||
537 | - | ||
538 | - | ||
539 | - | ||
540 | - | ||
541 | - | ||
542 | - | ||
535 | + | ||
543 | 536 |
| |
544 | 537 |
| |
545 | 538 |
| |
| |||
989 | 982 |
| |
990 | 983 |
| |
991 | 984 |
| |
985 | + | ||
986 | + | ||
987 | + | ||
988 | + | ||
989 | + | ||
990 | + | ||
991 | + | ||
992 | + | ||
993 | + | ||
994 | + | ||
995 | + | ||
996 | + | ||
997 | + | ||
998 | + | ||
999 | + | ||
1000 | + | ||
1001 | + | ||
1002 | + | ||
1003 | + | ||
1004 | + | ||
1005 | + | ||
1006 | + | ||
1007 | + | ||
1008 | + | ||
1009 | + | ||
992 | 1010 |
| |
993 | 1011 |
| |
994 | 1012 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
51 | 51 |
| |
52 | 52 |
| |
53 | 53 |
| |
54 | + | ||
54 | 55 |
| |
55 | 56 |
| |
56 | 57 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
66 | 66 |
| |
67 | 67 |
| |
68 | 68 |
| |
69 | - | ||
70 | - | ||
69 | + | ||
71 | 70 |
| |
72 | 71 |
| |
73 | 72 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
122 | 122 |
| |
123 | 123 |
| |
124 | 124 |
| |
125 | - | ||
126 | 125 |
| |
127 | 126 |
| |
128 | 127 |
| |
| |||
133 | 132 |
| |
134 | 133 |
| |
135 | 134 |
| |
136 | - | ||
137 | 135 |
| |
138 | 136 |
| |
139 | 137 |
| |
| |||
492 | 490 |
| |
493 | 491 |
| |
494 | 492 |
| |
493 | + | ||
494 | + | ||
495 | + | ||
495 | 496 |
| |
496 | 497 |
| |
497 | 498 |
| |
| |||
976 | 977 |
| |
977 | 978 |
| |
978 | 979 |
| |
979 | - | ||
980 | - | ||
980 | + | ||
981 | + | ||
982 | + | ||
981 | 983 |
| |
982 | 984 |
| |
983 | 985 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
765 | 765 |
| |
766 | 766 |
| |
767 | 767 |
| |
768 | - | ||
769 | - | ||
770 | - | ||
771 | - | ||
772 | - | ||
773 | - | ||
768 | + | ||
769 | + | ||
770 | + | ||
771 | + | ||
772 | + | ||
773 | + | ||
774 | + | ||
775 | + | ||
776 | + | ||
777 | + | ||
778 | + | ||
779 | + | ||
780 | + | ||
781 | + | ||
782 | + | ||
783 | + | ||
784 | + | ||
785 | + | ||
774 | 786 |
| |
775 | 787 |
| |
776 | 788 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2592 | 2592 |
| |
2593 | 2593 |
| |
2594 | 2594 |
| |
2595 | - | ||
2595 | + | ||
2596 | + | ||
2596 | 2597 |
| |
2597 | 2598 |
| |
2598 | 2599 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 | + | ||
11 | 12 |
| |
12 | 13 |
| |
13 | 14 |
| |
| |||
197 | 198 |
| |
198 | 199 |
| |
199 | 200 |
| |
201 | + | ||
202 | + | ||
203 | + | ||
204 | + | ||
205 | + | ||
206 | + | ||
207 | + | ||
208 | + | ||
209 | + | ||
210 | + | ||
211 | + | ||
212 | + | ||
200 | 213 |
| |
201 | 214 |
| |
202 | 215 |
| |
| |||
242 | 255 |
| |
243 | 256 |
| |
244 | 257 |
| |
258 | + | ||
259 | + | ||
260 | + | ||
261 | + | ||
262 | + | ||
245 | 263 |
| |
246 | 264 |
| |
247 | 265 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
88 | 88 |
| |
89 | 89 |
| |
90 | 90 |
| |
91 | + | ||
91 | 92 |
| |
92 | 93 |
| |
93 | 94 |
| |
| |||
182 | 183 |
| |
183 | 184 |
| |
184 | 185 |
| |
186 | + | ||
185 | 187 |
| |
186 | 188 |
| |
187 | 189 |
| |
| |||
206 | 208 |
| |
207 | 209 |
| |
208 | 210 |
| |
211 | + | ||
209 | 212 |
| |
210 | 213 |
| |
211 | 214 |
| |
| |||
254 | 257 |
| |
255 | 258 |
| |
256 | 259 |
| |
260 | + | ||
261 | + | ||
262 | + | ||
263 | + | ||
264 | + | ||
265 | + | ||
257 | 266 |
| |
258 | 267 |
| |
259 | 268 |
| |
| |||
326 | 335 |
| |
327 | 336 |
| |
328 | 337 |
| |
338 | + | ||
339 | + | ||
340 | + | ||
341 | + | ||
329 | 342 |
| |
330 | 343 |
| |
331 | 344 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
323 | 323 |
| |
324 | 324 |
| |
325 | 325 |
| |
326 | + | ||
327 | + | ||
328 | + | ||
329 | + | ||
330 | + | ||
331 | + | ||
332 | + | ||
333 | + | ||
334 | + | ||
326 | 335 |
| |
327 | 336 |
| |
328 | 337 |
| |
| |||
447 | 456 |
| |
448 | 457 |
| |
449 | 458 |
| |
459 | + | ||
450 | 460 |
| |
451 | 461 |
| |
452 | 462 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
35 | + | ||
30 | 36 |
| |
31 | 37 |
| |
32 | 38 |
| |
|
0 commit comments