This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit d337cec
committed
Auto merge of rust-lang#84684 - jackh726:rollup-qxc5cos, r=jackh726
Rollup of 11 pull requests
Successful merges:
- rust-lang#84484 (Don't rebuild rustdoc and clippy after checking bootstrap)
- rust-lang#84530 (`test tidy` should ignore alternative `build` dir patterns)
- rust-lang#84531 (Ignore commented out lines when finding features)
- rust-lang#84540 (Build sanitizers for x86_64-unknown-linux-musl)
- rust-lang#84555 (Set `backtrace-on-ice` by default for compiler and codegen profiles)
- rust-lang#84585 (Add `x.py check src/librustdoc` as an alias for `x.py check src/tools/rustdoc`)
- rust-lang#84636 (rustdoc: change aliases attribute to data-aliases)
- rust-lang#84646 (Add some regression tests related to rust-lang#82494)
- rust-lang#84661 (Remove extra word in `rustc_mir` docs)
- rust-lang#84663 (Remove `DropGuard` in `sys::windows::process` and use `StaticMutex` instead)
- rust-lang#84668 (Update books)
Failed merges:
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
22 files changed
+145
-43
lines changed- compiler/rustc_mir/src/borrow_check/type_check
- library/std/src/sys/windows
- src
- bootstrap
- defaults
- ci/docker/host-x86_64/dist-x86_64-musl
- doc
- librustdoc
- html
- render
- static
- test
- rustdoc
- ui/typeck
- tools
- clippy
- clippy_lints/src
- src
- tidy/src
22 files changed
+145
-43
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
97 | 97 | | |
98 | 98 | | |
99 | 99 | | |
100 | | - | |
| 100 | + | |
101 | 101 | | |
102 | 102 | | |
103 | 103 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | 22 | | |
24 | 23 | | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| |||
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | 97 | | |
102 | 98 | | |
103 | 99 | | |
| |||
209 | 205 | | |
210 | 206 | | |
211 | 207 | | |
212 | | - | |
213 | | - | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
214 | 211 | | |
215 | 212 | | |
216 | 213 | | |
| |||
259 | 256 | | |
260 | 257 | | |
261 | 258 | | |
262 | | - | |
263 | | - | |
264 | | - | |
265 | | - | |
266 | | - | |
267 | | - | |
268 | | - | |
269 | | - | |
270 | | - | |
271 | | - | |
272 | | - | |
273 | | - | |
274 | | - | |
275 | | - | |
276 | | - | |
277 | | - | |
278 | | - | |
279 | 259 | | |
280 | 260 | | |
281 | 261 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
| 11 | + | |
10 | 12 | | |
11 | 13 | | |
12 | 14 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
280 | 280 | | |
281 | 281 | | |
282 | 282 | | |
283 | | - | |
| 283 | + | |
284 | 284 | | |
285 | 285 | | |
286 | 286 | | |
| |||
292 | 292 | | |
293 | 293 | | |
294 | 294 | | |
295 | | - | |
| 295 | + | |
296 | 296 | | |
297 | 297 | | |
298 | 298 | | |
| |||
321 | 321 | | |
322 | 322 | | |
323 | 323 | | |
324 | | - | |
325 | | - | |
326 | | - | |
327 | | - | |
328 | | - | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
329 | 327 | | |
330 | 328 | | |
331 | 329 | | |
| |||
363 | 361 | | |
364 | 362 | | |
365 | 363 | | |
366 | | - | |
| 364 | + | |
367 | 365 | | |
368 | 366 | | |
369 | 367 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| 14 | + | |
| 15 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
| 10 | + | |
9 | 11 | | |
10 | 12 | | |
11 | 13 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
| 41 | + | |
41 | 42 | | |
42 | 43 | | |
43 | 44 | | |
| |||
- src/expressions/closure-expr.md+2-2
- src/expressions/if-expr.md+2-2
- src/expressions/loop-expr.md+1-2
- src/expressions/match-expr.md+1-4
- src/identifiers.md+12-6
- src/items/functions.md+2-2
- src/items/traits.md+1-1
- src/keywords.md+1
- src/linkage.md+8-7
- src/macros-by-example.md+2-2
- src/patterns.md+61
- src/statements.md+2-2
0 commit comments