This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit 91376f4
committed
Auto merge of rust-lang#129008 - GuillaumeGomez:rollup-6citttb, r=GuillaumeGomez
Rollup of 10 pull requests
Successful merges:
- rust-lang#128149 (nontemporal_store: make sure that the intrinsic is truly just a hint)
- rust-lang#128394 (Unify run button display with "copy code" button and with mdbook buttons)
- rust-lang#128537 (const vector passed through to codegen)
- rust-lang#128632 (std: do not overwrite style in `get_backtrace_style`)
- rust-lang#128878 (Slightly refactor `Flags` in bootstrap)
- rust-lang#128886 (Get rid of some `#[allow(rustc::untranslatable_diagnostic)]`)
- rust-lang#128929 (Fix codegen-units tests that were disabled 8 years ago)
- rust-lang#128937 (Fix warnings in rmake tests on `x86_64-unknown-linux-gnu`)
- rust-lang#128978 (Use `assert_matches` around the compiler more)
- rust-lang#128994 (Fix bug in `Parser::look_ahead`.)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
132 files changed
+789
-449
lines changed- compiler
- rustc_ast_lowering
- src
- rustc_attr
- src
- rustc_borrowck
- src/diagnostics
- rustc_codegen_cranelift/src/intrinsics
- rustc_codegen_gcc/src
- rustc_codegen_llvm/src
- rustc_codegen_ssa/src
- back
- mir
- traits
- rustc_const_eval
- src
- check_consts
- interpret
- rustc_data_structures/src
- graph/scc
- rustc_errors/src
- rustc_expand
- src
- rustc_hir_analysis/src
- check
- coherence
- collect
- rustc_infer/src
- infer/outlives
- rustc_interface/src
- rustc_lint/src
- rustc_metadata
- src
- rustc_middle/src/ty/consts
- rustc_mir_dataflow/src
- impls
- rustc_mir_transform/src
- rustc_parse/src
- parser
- rustc_passes
- src
- rustc_target/src/spec/abi
- rustc_trait_selection/src
- solve
- inspect
- traits
- rustc_ty_utils/src
- library
- core/src
- std/src
- src
- bootstrap/src
- bin
- core
- builder
- config
- utils/helpers
- librustdoc/html
- static
- css
- js
- tools/compiletest/src
- tests
- codegen-units
- item-collection
- auxiliary
- partitioning
- codegen
- intrinsics
- run-make
- CURRENT_RUSTC_VERSION
- arguments-non-c-like-enum
- c-link-to-rust-staticlib
- comment-section
- compressed-debuginfo
- const_fn_mir
- crate-loading
- dylib-soname
- extern-flag-disambiguates
- ice-dep-cannot-find-dep
- incr-test-moved-file
- incremental-debugger-visualizer
- lto-readonly-lib
- multiple-emits
- naked-symbol-visibility
- non-unicode-in-incremental-dir
- output-type-permutations
- print-check-cfg
- print-native-static-libs
- redundant-libs
- reproducible-build-2
- reset-codegen-1
- rlib-format-packed-bundled-libs-3
- run-in-tmpdir-self-test
- rust-lld-by-default-nightly
- rust-lld-compress-debug-sections
- rust-lld-custom-target
- rust-lld
- rustdoc-io-error
- rustdoc-scrape-examples-remap
- sepcomp-cci-copies
- sepcomp-inlining
- sepcomp-separate
- rustdoc-gui
- rustdoc
- ui
- coroutine
- feature-gates
- proc-macro
- auxiliary
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
132 files changed
+789
-449
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
167 | 167 | | |
168 | 168 | | |
169 | 169 | | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
170 | 173 | | |
171 | 174 | | |
172 | 175 | | |
173 | 176 | | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
174 | 184 | | |
| 185 | + | |
| 186 | + | |
175 | 187 | | |
176 | 188 | | |
177 | 189 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
23 | 26 | | |
24 | 27 | | |
25 | | - | |
26 | 28 | | |
27 | 29 | | |
28 | 30 | | |
| |||
52 | 54 | | |
53 | 55 | | |
54 | 56 | | |
55 | | - | |
| 57 | + | |
56 | 58 | | |
57 | 59 | | |
58 | 60 | | |
| |||
64 | 66 | | |
65 | 67 | | |
66 | 68 | | |
67 | | - | |
68 | | - | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
69 | 76 | | |
70 | 77 | | |
71 | 78 | | |
| |||
182 | 189 | | |
183 | 190 | | |
184 | 191 | | |
185 | | - | |
| 192 | + | |
186 | 193 | | |
187 | 194 | | |
188 | 195 | | |
| |||
246 | 253 | | |
247 | 254 | | |
248 | 255 | | |
249 | | - | |
| 256 | + | |
250 | 257 | | |
251 | 258 | | |
252 | 259 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
1540 | 1540 | | |
1541 | 1541 | | |
1542 | 1542 | | |
1543 | | - | |
1544 | 1543 | | |
1545 | 1544 | | |
1546 | 1545 | | |
| |||
1575 | 1574 | | |
1576 | 1575 | | |
1577 | 1576 | | |
1578 | | - | |
| 1577 | + | |
1579 | 1578 | | |
1580 | 1579 | | |
1581 | 1580 | | |
| |||
1587 | 1586 | | |
1588 | 1587 | | |
1589 | 1588 | | |
1590 | | - | |
| 1589 | + | |
1591 | 1590 | | |
1592 | 1591 | | |
1593 | 1592 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2326 | 2326 | | |
2327 | 2327 | | |
2328 | 2328 | | |
2329 | | - | |
2330 | 2329 | | |
2331 | 2330 | | |
2332 | 2331 | | |
| |||
2340 | 2339 | | |
2341 | 2340 | | |
2342 | 2341 | | |
2343 | | - | |
| 2342 | + | |
2344 | 2343 | | |
2345 | 2344 | | |
2346 | 2345 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
104 | 104 | | |
105 | 105 | | |
106 | 106 | | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
107 | 110 | | |
108 | 111 | | |
109 | 112 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| 23 | + | |
23 | 24 | | |
24 | 25 | | |
25 | 26 | | |
| |||
521 | 522 | | |
522 | 523 | | |
523 | 524 | | |
524 | | - | |
525 | 525 | | |
526 | 526 | | |
527 | 527 | | |
| |||
593 | 593 | | |
594 | 594 | | |
595 | 595 | | |
596 | | - | |
597 | 596 | | |
598 | 597 | | |
599 | 598 | | |
| |||
680 | 679 | | |
681 | 680 | | |
682 | 681 | | |
683 | | - | |
| 682 | + | |
684 | 683 | | |
685 | 684 | | |
686 | 685 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
65 | 68 | | |
66 | 69 | | |
67 | 70 | | |
| |||
74 | 77 | | |
75 | 78 | | |
76 | 79 | | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
77 | 89 | | |
78 | 90 | | |
79 | 91 | | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
80 | 98 | | |
81 | 99 | | |
82 | 100 | | |
| |||
163 | 181 | | |
164 | 182 | | |
165 | 183 | | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
166 | 187 | | |
167 | 188 | | |
168 | 189 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| 6 | + | |
| 7 | + | |
6 | 8 | | |
7 | 9 | | |
8 | 10 | | |
| |||
116 | 118 | | |
117 | 119 | | |
118 | 120 | | |
119 | | - | |
| 121 | + | |
120 | 122 | | |
121 | 123 | | |
122 | 124 | | |
| |||
147 | 149 | | |
148 | 150 | | |
149 | 151 | | |
150 | | - | |
| 152 | + | |
151 | 153 | | |
152 | 154 | | |
153 | 155 | | |
| |||
Lines changed: 31 additions & 33 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
| 38 | + | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| |||
198 | 198 | | |
199 | 199 | | |
200 | 200 | | |
201 | | - | |
202 | 201 | | |
203 | 202 | | |
204 | 203 | | |
| |||
251 | 250 | | |
252 | 251 | | |
253 | 252 | | |
254 | | - | |
255 | | - | |
256 | | - | |
257 | | - | |
258 | | - | |
259 | | - | |
260 | | - | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
| 263 | + | |
261 | 264 | | |
262 | 265 | | |
263 | | - | |
264 | | - | |
265 | | - | |
266 | | - | |
267 | | - | |
268 | | - | |
269 | | - | |
270 | | - | |
| 266 | + | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
| 270 | + | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
| 274 | + | |
271 | 275 | | |
272 | 276 | | |
273 | 277 | | |
| |||
277 | 281 | | |
278 | 282 | | |
279 | 283 | | |
280 | | - | |
281 | | - | |
282 | | - | |
| 284 | + | |
| 285 | + | |
| 286 | + | |
| 287 | + | |
283 | 288 | | |
284 | 289 | | |
285 | 290 | | |
286 | 291 | | |
287 | 292 | | |
288 | 293 | | |
289 | | - | |
| 294 | + | |
290 | 295 | | |
291 | 296 | | |
292 | 297 | | |
| |||
976 | 981 | | |
977 | 982 | | |
978 | 983 | | |
979 | | - | |
980 | 984 | | |
981 | 985 | | |
982 | 986 | | |
| |||
994 | 998 | | |
995 | 999 | | |
996 | 1000 | | |
997 | | - | |
998 | | - | |
999 | | - | |
1000 | | - | |
1001 | | - | |
1002 | | - | |
| 1001 | + | |
| 1002 | + | |
1003 | 1003 | | |
1004 | 1004 | | |
1005 | 1005 | | |
1006 | | - | |
| 1006 | + | |
1007 | 1007 | | |
1008 | 1008 | | |
1009 | 1009 | | |
| |||
1045 | 1045 | | |
1046 | 1046 | | |
1047 | 1047 | | |
1048 | | - | |
1049 | 1048 | | |
1050 | 1049 | | |
1051 | 1050 | | |
| |||
1166 | 1165 | | |
1167 | 1166 | | |
1168 | 1167 | | |
1169 | | - | |
| 1168 | + | |
1170 | 1169 | | |
1171 | 1170 | | |
1172 | 1171 | | |
1173 | 1172 | | |
1174 | 1173 | | |
1175 | 1174 | | |
1176 | 1175 | | |
1177 | | - | |
1178 | 1176 | | |
1179 | 1177 | | |
1180 | 1178 | | |
| |||
1213 | 1211 | | |
1214 | 1212 | | |
1215 | 1213 | | |
1216 | | - | |
| 1214 | + | |
1217 | 1215 | | |
1218 | 1216 | | |
1219 | 1217 | | |
| |||
0 commit comments