This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit ddf41b9
committed
Auto merge of rust-lang#138578 - jhpratt:rollup-4r4y9y3, r=jhpratt
Rollup of 7 pull requests
Successful merges:
- rust-lang#136293 (document capacity for ZST as example)
- rust-lang#136355 (Add `*_value` methods to proc_macro lib)
- rust-lang#136359 (doc all differences of ptr:copy(_nonoverlapping) with memcpy and memmove)
- rust-lang#136816 (refactor `notable_traits_button` to use iterator combinators instead of for loop)
- rust-lang#138363 (Add `From<{integer}>` for `f16`/`f128` impls)
- rust-lang#138552 (Misc print request handling cleanups + a centralized test for print request stability gating)
- rust-lang#138573 (Make `_Unwind_Action` a type alias, not enum)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
40 files changed
+548
-129
lines changed- compiler
- rustc_ast
- src/util
- rustc_driver_impl/src
- rustc_lexer
- src
- rustc_parse_format
- src
- rustc_parse
- src
- lexer
- parser
- rustc_session/src
- library
- alloc/src/vec
- core/src
- convert
- intrinsics
- literal-escaper
- src
- proc_macro
- src
- std
- src/sys/personality
- tests/floats
- unwind/src
- src
- bootstrap/src/core
- builder
- librustdoc/html/render
- tools/tidy/src
- tests/ui
- feature-gates
- print-request
- proc-macro/auxiliary/api
40 files changed
+548
-129
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2082 | 2082 | | |
2083 | 2083 | | |
2084 | 2084 | | |
| 2085 | + | |
| 2086 | + | |
| 2087 | + | |
| 2088 | + | |
| 2089 | + | |
| 2090 | + | |
| 2091 | + | |
2085 | 2092 | | |
2086 | 2093 | | |
2087 | 2094 | | |
| |||
3148 | 3155 | | |
3149 | 3156 | | |
3150 | 3157 | | |
| 3158 | + | |
| 3159 | + | |
| 3160 | + | |
| 3161 | + | |
| 3162 | + | |
| 3163 | + | |
3151 | 3164 | | |
3152 | 3165 | | |
3153 | 3166 | | |
| |||
3186 | 3199 | | |
3187 | 3200 | | |
3188 | 3201 | | |
| 3202 | + | |
3189 | 3203 | | |
3190 | 3204 | | |
3191 | 3205 | | |
| |||
3895 | 3909 | | |
3896 | 3910 | | |
3897 | 3911 | | |
| 3912 | + | |
3898 | 3913 | | |
3899 | 3914 | | |
3900 | 3915 | | |
| |||
4157 | 4172 | | |
4158 | 4173 | | |
4159 | 4174 | | |
| 4175 | + | |
4160 | 4176 | | |
4161 | 4177 | | |
4162 | 4178 | | |
| |||
4179 | 4195 | | |
4180 | 4196 | | |
4181 | 4197 | | |
| 4198 | + | |
4182 | 4199 | | |
4183 | 4200 | | |
4184 | 4201 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
649 | 649 | | |
650 | 650 | | |
651 | 651 | | |
652 | | - | |
| 652 | + | |
653 | 653 | | |
654 | 654 | | |
655 | | - | |
| 655 | + | |
656 | 656 | | |
657 | 657 | | |
658 | 658 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
30 | 29 | | |
31 | 30 | | |
32 | 31 | | |
33 | 32 | | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
34 | 36 | | |
35 | 37 | | |
36 | 38 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
3 | 4 | | |
4 | 5 | | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
8 | 9 | | |
9 | | - | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
970 | 970 | | |
971 | 971 | | |
972 | 972 | | |
973 | | - | |
| 973 | + | |
974 | 974 | | |
975 | 975 | | |
976 | 976 | | |
| |||
986 | 986 | | |
987 | 987 | | |
988 | 988 | | |
989 | | - | |
| 989 | + | |
990 | 990 | | |
991 | 991 | | |
992 | 992 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| 6 | + | |
6 | 7 | | |
7 | | - | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
21 | 22 | | |
22 | 23 | | |
23 | 24 | | |
24 | | - | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| |||
0 commit comments