-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Commit 6f34f4e
Auto merge of #147019 - Zalathar:rollup-boxzbmo, r=Zalathar
Rollup of 14 pull requests
Successful merges:
- #145067 (RawVecInner: add missing `unsafe` to unsafe fns)
- #145277 (Do not materialise X in [X; 0] when X is unsizing a const)
- #145973 (Add `std` support for `armv7a-vex-v5`)
- #146667 (Add an attribute to check the number of lanes in a SIMD vector after monomorphization)
- #146735 (unstably constify float mul_add methods)
- #146737 (f16_f128: enable some more tests in Miri)
- #146766 (Add attributes for #[global_allocator] functions)
- #146905 (llvm: update remarks support on LLVM 22)
- #146982 (Remove erroneous normalization step in `tests/run-make/linker-warning`)
- #147005 (Small string formatting cleanup)
- #147007 (Explicitly note `&[SocketAddr]` impl of `ToSocketAddrs`)
- #147008 (bootstrap.py: Respect build.jobs while building bootstrap tool)
- #147013 (rustdoc: Fix documentation for `--doctest-build-arg`)
- #147015 (Use `LLVMDisposeTargetMachine`)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
90 files changed
+1670
-319
lines changed- compiler
- rustc_attr_parsing/src
- attributes
- rustc_builtin_macros/src
- rustc_codegen_cranelift/src
- rustc_codegen_gcc/src
- rustc_codegen_llvm/src
- back
- debuginfo
- llvm
- rustc_const_eval/src/interpret
- rustc_feature/src
- rustc_hir_analysis/src/hir_ty_lowering
- rustc_hir/src/attrs
- rustc_interface/src
- rustc_llvm/llvm-wrapper
- rustc_middle
- src
- ty
- rustc_mir_build/src/builder/expr
- rustc_passes/src
- rustc_span/src
- rustc_target/src/spec/targets
- rustc_transmute/src/layout
- rustc_ty_utils/src
- library
- alloc/src/raw_vec
- coretests/tests
- floats
- core/src
- intrinsics
- num
- std
- src
- net
- num
- sys
- alloc
- fs
- pal
- vexos
- random
- stdio
- thread_local
- thread
- src
- bootstrap
- doc
- rustc/src/platform-support
- rustdoc/src
- librustdoc/html/templates
- tools
- miri/src
- intrinsics
- tidy/src
- tests
- codegen-llvm
- run-make/linker-warning
- ui
- coercion
- simd
- auxiliary
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
90 files changed
+1670
-319
lines changedLines changed: 0 additions & 36 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | - | ||
2 | - | ||
3 | - | ||
4 | - | ||
5 | 1 |
| |
6 | - | ||
7 | - | ||
8 | - | ||
9 | - | ||
10 | - | ||
11 | - | ||
12 | - | ||
13 | - | ||
14 | - | ||
15 | - | ||
16 | - | ||
17 | - | ||
18 | - | ||
19 | - | ||
20 | - | ||
21 | - | ||
22 | - | ||
23 | - | ||
24 | - | ||
25 | - | ||
26 | - | ||
27 | - | ||
28 | - | ||
29 | - | ||
30 | - | ||
31 | - | ||
32 | - | ||
33 | - | ||
34 | - | ||
35 | - | ||
36 | - | ||
37 | - | ||
38 | 2 |
| |
39 | 3 |
| |
40 | 4 |
| |
|
Lines changed: 18 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
49 | 49 |
| |
50 | 50 |
| |
51 | 51 |
| |
52 | + | ||
53 | + | ||
54 | + | ||
55 | + | ||
56 | + | ||
57 | + | ||
58 | + | ||
59 | + | ||
60 | + | ||
61 | + | ||
62 | + | ||
63 | + | ||
64 | + | ||
65 | + | ||
66 | + | ||
67 | + | ||
68 | + | ||
69 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
1 | 3 |
| |
2 | 4 |
| |
3 | 5 |
| |
4 | 6 |
| |
7 | + | ||
5 | 8 |
| |
6 | 9 |
| |
7 | 10 |
| |
8 | - | ||
11 | + | ||
12 | + | ||
9 | 13 |
| |
10 | 14 |
| |
11 | 15 |
| |
| |||
85 | 89 |
| |
86 | 90 |
| |
87 | 91 |
| |
92 | + | ||
93 | + | ||
94 | + | ||
95 | + | ||
96 | + | ||
97 | + | ||
98 | + | ||
99 | + | ||
100 | + | ||
101 | + | ||
102 | + | ||
103 | + | ||
104 | + | ||
105 | + | ||
106 | + | ||
107 | + | ||
108 | + | ||
109 | + | ||
110 | + | ||
111 | + | ||
112 | + | ||
113 | + | ||
114 | + | ||
115 | + | ||
116 | + | ||
117 | + | ||
118 | + | ||
119 | + | ||
120 | + | ||
121 | + | ||
122 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
53 | 53 |
| |
54 | 54 |
| |
55 | 55 |
| |
56 | - | ||
56 | + | ||
57 | 57 |
| |
58 | 58 |
| |
59 | 59 |
| |
| |||
198 | 198 |
| |
199 | 199 |
| |
200 | 200 |
| |
201 | + | ||
201 | 202 |
| |
202 | 203 |
| |
203 | 204 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
85 | 85 |
| |
86 | 86 |
| |
87 | 87 |
| |
88 | - | ||
88 | + | ||
89 | 89 |
| |
90 | 90 |
| |
91 | 91 |
| |
| |||
100 | 100 |
| |
101 | 101 |
| |
102 | 102 |
| |
103 | - | ||
104 | - | ||
103 | + | ||
104 | + | ||
105 | + | ||
106 | + | ||
107 | + | ||
108 | + | ||
109 | + | ||
110 | + | ||
111 | + | ||
112 | + | ||
113 | + | ||
114 | + | ||
105 | 115 |
| |
106 | 116 |
| |
107 | 117 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
439 | 439 |
| |
440 | 440 |
| |
441 | 441 |
| |
442 | - | ||
442 | + | ||
443 | + | ||
444 | + | ||
445 | + | ||
443 | 446 |
| |
444 | 447 |
| |
445 | 448 |
| |
| |||
458 | 461 |
| |
459 | 462 |
| |
460 | 463 |
| |
461 | - | ||
464 | + | ||
465 | + | ||
466 | + | ||
462 | 467 |
| |
463 | 468 |
| |
464 | 469 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
42 | 42 |
| |
43 | 43 |
| |
44 | 44 |
| |
45 | - | ||
45 | + | ||
46 | + | ||
47 | + | ||
48 | + | ||
46 | 49 |
| |
47 | 50 |
| |
48 | 51 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
529 | 529 |
| |
530 | 530 |
| |
531 | 531 |
| |
532 | - | ||
532 | + | ||
533 | + | ||
534 | + | ||
535 | + | ||
533 | 536 |
| |
534 | 537 |
| |
535 | 538 |
| |
| |||
545 | 548 |
| |
546 | 549 |
| |
547 | 550 |
| |
548 | - | ||
551 | + | ||
552 | + | ||
553 | + | ||
549 | 554 |
| |
550 | 555 |
| |
551 | 556 |
| |
|
Lines changed: 1 addition & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
95 | 95 |
| |
96 | 96 |
| |
97 | 97 |
| |
98 | - | ||
99 | - | ||
100 | - | ||
98 | + | ||
101 | 99 |
| |
102 | 100 |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1044 | 1044 |
| |
1045 | 1045 |
| |
1046 | 1046 |
| |
1047 | - | ||
1047 | + | ||
1048 | + | ||
1049 | + | ||
1050 | + | ||
1048 | 1051 |
| |
1049 | 1052 |
| |
1050 | 1053 |
| |
| |||
1061 | 1064 |
| |
1062 | 1065 |
| |
1063 | 1066 |
| |
1064 | - | ||
1067 | + | ||
1068 | + | ||
1069 | + | ||
1070 | + | ||
1071 | + | ||
1065 | 1072 |
| |
1066 | 1073 |
| |
1067 | 1074 |
| |
|
0 commit comments