-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Commit 18a029c
Auto merge of #139657 - Zalathar:rollup-6oh6f9q, r=Zalathar
Rollup of 12 pull requests
Successful merges:
- #137447 (add `core::intrinsics::simd::{simd_extract_dyn, simd_insert_dyn}`)
- #138182 (rustc_target: update x86_win64 to match the documented calling convention for f128)
- #138682 (Allow drivers to supply a list of extra symbols to intern)
- #138904 (Test linking and running `no_std` binaries)
- #138998 (Don't suggest the use of `impl Trait` in closure parameter)
- #139447 (doc changes: debug assertions -> overflow checks)
- #139469 (Introduce a `//@ needs-crate-type` compiletest directive)
- #139564 (Deeply normalize obligations in `BestObligation` folder)
- #139574 (bootstrap: improve `channel` handling)
- #139600 (Update `compiler-builtins` to 0.1.153)
- #139641 (Allow parenthesis around inferred array lengths)
- #139654 (Improve `AssocItem::descr`.)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
91 files changed
+899
-313
lines changed- compiler
- rustc_ast_lowering/src
- rustc_codegen_llvm/src
- rustc_driver_impl/src
- rustc_hir_analysis/src/check
- rustc_hir/src
- rustc_interface/src
- rustc_macros/src
- rustc_metadata/src/rmeta
- rustc_middle/src
- query
- ty
- rustc_span/src
- symbol
- rustc_trait_selection/src
- error_reporting/traits
- solve
- fulfill
- library
- alloc
- core/src
- intrinsics
- iter
- adapters
- traits
- std
- src
- bootstrap
- defaults
- src/core/config
- doc/rustc-dev-guide/src/tests
- librustdoc
- tools
- clippy
- clippy_lints/src
- attrs
- doc
- clippy_utils/src
- src
- compiletest/src
- header
- tests
- assembly
- codegen/simd
- ui-fulldeps
- ui
- const-generics/generic_arg_infer
- consts/static-default-lifetime
- diagnostic_namespace/do_not_recommend
- generic-associated-types
- generic-const-items
- impl-trait
- in-trait
- invalid-compile-flags
- lifetimes
- linkage-attr
- lint/non-snake-case
- no_std
- panic-runtime
- simd/intrinsic
- traits
- const-traits
- next-solver
- overflow
- type-alias-impl-trait
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
91 files changed
+899
-313
lines changedLines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2034 | 2034 |
| |
2035 | 2035 |
| |
2036 | 2036 |
| |
2037 | - | ||
2037 | + | ||
2038 | + | ||
2039 | + | ||
2038 | 2040 |
| |
2039 | 2041 |
| |
2040 | 2042 |
| |
|
Lines changed: 39 additions & 30 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1421 | 1421 |
| |
1422 | 1422 |
| |
1423 | 1423 |
| |
1424 | - | ||
1424 | + | ||
1425 | 1425 |
| |
1426 | 1426 |
| |
1427 | 1427 |
| |
| |||
1432 | 1432 |
| |
1433 | 1433 |
| |
1434 | 1434 |
| |
1435 | - | ||
1436 | - | ||
1437 | - | ||
1438 | - | ||
1439 | - | ||
1440 | - | ||
1441 | - | ||
1442 | - | ||
1443 | - | ||
1444 | - | ||
1445 | - | ||
1446 | - | ||
1447 | - | ||
1448 | - | ||
1449 | - | ||
1450 | - | ||
1435 | + | ||
1436 | + | ||
1437 | + | ||
1438 | + | ||
1439 | + | ||
1440 | + | ||
1441 | + | ||
1442 | + | ||
1443 | + | ||
1444 | + | ||
1445 | + | ||
1446 | + | ||
1447 | + | ||
1448 | + | ||
1449 | + | ||
1450 | + | ||
1451 | + | ||
1452 | + | ||
1453 | + | ||
1451 | 1454 |
| |
1452 | - | ||
1455 | + | ||
1453 | 1456 |
| |
1454 | 1457 |
| |
1455 | 1458 |
| |
1456 | 1459 |
| |
1457 | - | ||
1458 | - | ||
1459 | - | ||
1460 | - | ||
1461 | - | ||
1462 | - | ||
1463 | - | ||
1464 | - | ||
1465 | - | ||
1466 | - | ||
1467 | - | ||
1468 | - | ||
1460 | + | ||
1461 | + | ||
1462 | + | ||
1463 | + | ||
1464 | + | ||
1465 | + | ||
1466 | + | ||
1467 | + | ||
1468 | + | ||
1469 | + | ||
1470 | + | ||
1471 | + | ||
1472 | + | ||
1473 | + | ||
1474 | + | ||
1475 | + | ||
1476 | + | ||
1477 | + | ||
1469 | 1478 |
| |
1470 | 1479 |
| |
1471 | 1480 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
264 | 264 |
| |
265 | 265 |
| |
266 | 266 |
| |
267 | + | ||
267 | 268 |
| |
268 | 269 |
| |
269 | 270 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
17 | 17 |
| |
18 | 18 |
| |
19 | 19 |
| |
20 | - | ||
20 | + | ||
21 | 21 |
| |
22 | 22 |
| |
23 | 23 |
| |
|
Lines changed: 6 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
659 | 659 |
| |
660 | 660 |
| |
661 | 661 |
| |
662 | - | ||
663 | - | ||
662 | + | ||
663 | + | ||
664 | + | ||
665 | + | ||
666 | + | ||
667 | + | ||
664 | 668 |
| |
665 | 669 |
| |
666 | 670 |
| |
|
Lines changed: 5 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
348 | 348 |
| |
349 | 349 |
| |
350 | 350 |
| |
351 | + | ||
352 | + | ||
353 | + | ||
354 | + | ||
351 | 355 |
| |
352 | 356 |
| |
353 | 357 |
| |
| |||
409 | 413 |
| |
410 | 414 |
| |
411 | 415 |
| |
416 | + | ||
412 | 417 |
| |
413 | 418 |
| |
414 | 419 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
53 | 53 |
| |
54 | 54 |
| |
55 | 55 |
| |
56 | - | ||
56 | + | ||
57 | 57 |
| |
58 | 58 |
| |
59 | 59 |
| |
|
Lines changed: 21 additions & 10 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
117 | 117 |
| |
118 | 118 |
| |
119 | 119 |
| |
120 | + | ||
120 | 121 |
| |
121 | 122 |
| |
122 | 123 |
| |
| |||
134 | 135 |
| |
135 | 136 |
| |
136 | 137 |
| |
137 | - | ||
138 | - | ||
139 | - | ||
138 | + | ||
139 | + | ||
140 | + | ||
141 | + | ||
142 | + | ||
143 | + | ||
140 | 144 |
| |
141 | 145 |
| |
142 | 146 |
| |
| |||
152 | 156 |
| |
153 | 157 |
| |
154 | 158 |
| |
159 | + | ||
155 | 160 |
| |
156 | 161 |
| |
157 | 162 |
| |
| |||
168 | 173 |
| |
169 | 174 |
| |
170 | 175 |
| |
171 | - | ||
172 | - | ||
173 | - | ||
174 | - | ||
175 | - | ||
176 | - | ||
176 | + | ||
177 | + | ||
178 | + | ||
179 | + | ||
180 | + | ||
181 | + | ||
182 | + | ||
183 | + | ||
184 | + | ||
185 | + | ||
186 | + | ||
187 | + | ||
177 | 188 |
| |
178 | 189 |
| |
179 | 190 |
| |
| |||
230 | 241 |
| |
231 | 242 |
| |
232 | 243 |
| |
233 | - | ||
244 | + | ||
234 | 245 |
| |
235 | 246 |
| |
236 | 247 |
| |
|
Lines changed: 16 additions & 9 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
142 | 142 |
| |
143 | 143 |
| |
144 | 144 |
| |
145 | - | ||
145 | + | ||
146 | 146 |
| |
147 | 147 |
| |
148 | 148 |
| |
149 | 149 |
| |
150 | 150 |
| |
151 | - | ||
151 | + | ||
152 | 152 |
| |
153 | 153 |
| |
154 | 154 |
| |
| |||
163 | 163 |
| |
164 | 164 |
| |
165 | 165 |
| |
166 | - | ||
166 | + | ||
167 | 167 |
| |
168 | 168 |
| |
169 | 169 |
| |
| |||
295 | 295 |
| |
296 | 296 |
| |
297 | 297 |
| |
298 | - | ||
298 | + | ||
299 | 299 |
| |
300 | 300 |
| |
301 | - | ||
301 | + | ||
302 | + | ||
303 | + | ||
304 | + | ||
305 | + | ||
302 | 306 |
| |
303 | 307 |
| |
304 | 308 |
| |
| |||
315 | 319 |
| |
316 | 320 |
| |
317 | 321 |
| |
318 | - | ||
319 | - | ||
320 | - | ||
321 | - | ||
322 | + | ||
323 | + | ||
324 | + | ||
325 | + | ||
326 | + | ||
327 | + | ||
328 | + | ||
322 | 329 |
| |
323 | 330 |
| |
324 | 331 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
562 | 562 |
| |
563 | 563 |
| |
564 | 564 |
| |
565 | - | ||
565 | + | ||
566 | 566 |
| |
567 | - | ||
567 | + | ||
568 | 568 |
| |
569 | 569 |
| |
570 | 570 |
| |
|
0 commit comments