Commit 033c0a4
committed
Auto merge of rust-lang#146185 - Zalathar:rollup-n14lyv6, r=Zalathar
Rollup of 24 pull requests
Successful merges:
- rust-lang#140459 (Add `read_buf` equivalents for positioned reads)
- rust-lang#143725 (core: add Peekable::next_if_map)
- rust-lang#145209 (Stabilize `path_add_extension`)
- rust-lang#145342 (fix drop scope for `super let` bindings within `if let`)
- rust-lang#145750 (raw_vec.rs: Remove superfluous fn alloc_guard)
- rust-lang#145827 (On unused binding or binding not present in all patterns, suggest potential typo of unit struct/variant or const)
- rust-lang#145932 (Allow `inline(always)` with a target feature behind a unstable feature `target_feature_inline_always`.)
- rust-lang#145962 (Ensure we emit an allocator shim when only some crate types need one)
- rust-lang#145963 (Add LSX accelerated implementation for source file analysis)
- rust-lang#146054 (add `#[must_use]` to `array::repeat`)
- rust-lang#146090 (Derive `PartialEq` for `InvisibleOrigin`)
- rust-lang#146112 (don't uppercase error messages)
- rust-lang#146120 (Correct typo in `rustc_errors` comment)
- rust-lang#146124 (Test `rustc-dev` in `distcheck`)
- rust-lang#146127 (Rename `ToolRustc` to `ToolRustcPrivate`)
- rust-lang#146131 (rustdoc-search: add test case for indexing every item type)
- rust-lang#146134 (llvm: nvptx: Layout update to match LLVM)
- rust-lang#146136 (docs(std): add missing closing code block fences in doc comments)
- rust-lang#146137 (Disallow frontmatter in `--cfg` and `--check-cfg` arguments)
- rust-lang#146140 (compiletest: cygwin follows windows in using PATH for dynamic libraries)
- rust-lang#146150 (fix(rustdoc): match rustc `--emit` precedence )
- rust-lang#146155 (Make bootstrap self test parallel)
- rust-lang#146161 ([rustdoc] Uncomment code to add scraped rustdoc examples in loaded paths)
- rust-lang#146172 (triagebot: configure some pings when certain attributes are used)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
157 files changed
+2934
-707
lines changed- compiler
- rustc_ast/src
- rustc_attr_parsing
- rustc_codegen_llvm/src
- rustc_codegen_ssa
- src
- back
- rustc_const_eval
- rustc_driver_impl
- rustc_errors/src
- rustc_expand/src/mbe
- rustc_feature/src
- rustc_hir_analysis/src/check
- rustc_interface/src
- rustc_lint_defs/src
- rustc_middle/src
- middle
- ty
- rustc_mir_transform/src
- rustc_parse
- src
- rustc_passes
- src
- rustc_query_system
- rustc_resolve
- src
- rustc_span/src
- rustc_target/src/spec/targets
- library
- alloc/src/raw_vec
- coretests/tests
- iter/adapters
- core/src
- array
- iter/adapters
- num
- ops
- ptr
- portable-simd/crates/core_simd/src/simd/num
- std
- src
- fs
- os
- unix
- windows
- sys
- fd
- fs
- pal/windows
- tests
- src
- bootstrap/src
- core
- build_steps
- builder
- utils/cc_detect
- doc
- rustc-dev-guide/src/building/bootstrapping
- rustc/src/command-line-arguments
- etc
- librustdoc
- tools
- compiletest/src
- tidy/src
- tests
- run-make
- multiline-args-value
- rustdoc-dep-info
- rustdoc-search-load-itemtype
- separate-link-fail
- ui
- codegen
- const-generics/min_const_generics
- const-ptr
- consts
- const-eval
- heap
- const-mut-refs
- miri_unleashed
- drop
- feature-gates
- fn
- linkage-attr/raw-dylib/windows
- linking
- lint/non-snake-case
- or-patterns
- pattern
- rfc-3637-guard-patterns
- resolve
- span
- statics
- target-feature
- type/pattern_types
- unstable-feature-bound
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
157 files changed
+2934
-707
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
26 | | - | |
| 25 | + | |
27 | 26 | | |
28 | 27 | | |
29 | 28 | | |
| |||
45 | 44 | | |
46 | 45 | | |
47 | 46 | | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | 47 | | |
63 | 48 | | |
64 | 49 | | |
| |||
142 | 127 | | |
143 | 128 | | |
144 | 129 | | |
145 | | - | |
| 130 | + | |
| 131 | + | |
146 | 132 | | |
147 | 133 | | |
148 | 134 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
151 | 151 | | |
152 | 152 | | |
153 | 153 | | |
154 | | - | |
| 154 | + | |
155 | 155 | | |
156 | 156 | | |
157 | 157 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
33 | | - | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
34 | 44 | | |
35 | 45 | | |
36 | 46 | | |
| |||
346 | 356 | | |
347 | 357 | | |
348 | 358 | | |
349 | | - | |
350 | | - | |
351 | | - | |
352 | | - | |
353 | | - | |
354 | | - | |
355 | | - | |
356 | | - | |
357 | 359 | | |
358 | 360 | | |
359 | 361 | | |
| |||
488 | 490 | | |
489 | 491 | | |
490 | 492 | | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
491 | 501 | | |
492 | 502 | | |
493 | 503 | | |
| |||
517 | 527 | | |
518 | 528 | | |
519 | 529 | | |
| 530 | + | |
520 | 531 | | |
521 | 532 | | |
522 | 533 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1392 | 1392 | | |
1393 | 1393 | | |
1394 | 1394 | | |
1395 | | - | |
| 1395 | + | |
1396 | 1396 | | |
1397 | 1397 | | |
1398 | 1398 | | |
| |||
1409 | 1409 | | |
1410 | 1410 | | |
1411 | 1411 | | |
1412 | | - | |
| 1412 | + | |
1413 | 1413 | | |
1414 | 1414 | | |
1415 | | - | |
| 1415 | + | |
1416 | 1416 | | |
1417 | 1417 | | |
1418 | 1418 | | |
| |||
1429 | 1429 | | |
1430 | 1430 | | |
1431 | 1431 | | |
| 1432 | + | |
| 1433 | + | |
| 1434 | + | |
| 1435 | + | |
| 1436 | + | |
| 1437 | + | |
| 1438 | + | |
| 1439 | + | |
| 1440 | + | |
| 1441 | + | |
| 1442 | + | |
| 1443 | + | |
| 1444 | + | |
| 1445 | + | |
| 1446 | + | |
| 1447 | + | |
| 1448 | + | |
| 1449 | + | |
| 1450 | + | |
| 1451 | + | |
| 1452 | + | |
| 1453 | + | |
| 1454 | + | |
1432 | 1455 | | |
1433 | 1456 | | |
1434 | 1457 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
217 | 217 | | |
218 | 218 | | |
219 | 219 | | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + | |
220 | 224 | | |
221 | 225 | | |
222 | 226 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | 45 | | |
46 | | - | |
| 46 | + | |
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
| 51 | + | |
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
| |||
264 | 264 | | |
265 | 265 | | |
266 | 266 | | |
267 | | - | |
| 267 | + | |
268 | 268 | | |
269 | | - | |
| 269 | + | |
270 | 270 | | |
271 | 271 | | |
272 | 272 | | |
| |||
364 | 364 | | |
365 | 365 | | |
366 | 366 | | |
367 | | - | |
| 367 | + | |
368 | 368 | | |
369 | 369 | | |
370 | 370 | | |
371 | 371 | | |
372 | 372 | | |
373 | | - | |
| 373 | + | |
374 | 374 | | |
375 | 375 | | |
376 | 376 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| 61 | + | |
61 | 62 | | |
62 | 63 | | |
63 | 64 | | |
| |||
2080 | 2081 | | |
2081 | 2082 | | |
2082 | 2083 | | |
2083 | | - | |
2084 | | - | |
2085 | | - | |
| 2084 | + | |
| 2085 | + | |
| 2086 | + | |
| 2087 | + | |
| 2088 | + | |
| 2089 | + | |
| 2090 | + | |
| 2091 | + | |
| 2092 | + | |
| 2093 | + | |
| 2094 | + | |
2086 | 2095 | | |
2087 | 2096 | | |
2088 | 2097 | | |
| |||
2281 | 2290 | | |
2282 | 2291 | | |
2283 | 2292 | | |
2284 | | - | |
| 2293 | + | |
2285 | 2294 | | |
2286 | 2295 | | |
2287 | 2296 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
15 | | - | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
16 | 17 | | |
17 | 18 | | |
18 | 19 | | |
| |||
22 | 23 | | |
23 | 24 | | |
24 | 25 | | |
| 26 | + | |
| 27 | + | |
25 | 28 | | |
26 | 29 | | |
27 | 30 | | |
| |||
1827 | 1830 | | |
1828 | 1831 | | |
1829 | 1832 | | |
1830 | | - | |
| 1833 | + | |
1831 | 1834 | | |
1832 | 1835 | | |
1833 | 1836 | | |
| |||
1838 | 1841 | | |
1839 | 1842 | | |
1840 | 1843 | | |
| 1844 | + | |
| 1845 | + | |
| 1846 | + | |
| 1847 | + | |
| 1848 | + | |
| 1849 | + | |
| 1850 | + | |
| 1851 | + | |
1841 | 1852 | | |
1842 | 1853 | | |
1843 | 1854 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
| 11 | + | |
12 | 12 | | |
| 13 | + | |
13 | 14 | | |
14 | 15 | | |
15 | 16 | | |
| |||
115 | 116 | | |
116 | 117 | | |
117 | 118 | | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
118 | 124 | | |
119 | 125 | | |
120 | 126 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
217 | 217 | | |
218 | 218 | | |
219 | 219 | | |
220 | | - | |
221 | | - | |
222 | | - | |
223 | | - | |
224 | | - | |
225 | | - | |
226 | | - | |
227 | | - | |
228 | | - | |
229 | | - | |
230 | | - | |
231 | | - | |
232 | | - | |
233 | | - | |
234 | | - | |
235 | | - | |
236 | | - | |
237 | | - | |
238 | | - | |
239 | | - | |
240 | | - | |
241 | | - | |
242 | | - | |
243 | | - | |
244 | | - | |
245 | 220 | | |
246 | 221 | | |
247 | 222 | | |
| |||
516 | 491 | | |
517 | 492 | | |
518 | 493 | | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
| 511 | + | |
| 512 | + | |
| 513 | + | |
| 514 | + | |
| 515 | + | |
| 516 | + | |
| 517 | + | |
| 518 | + | |
519 | 519 | | |
520 | 520 | | |
521 | 521 | | |
| |||
0 commit comments