-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Commit 1b8ab72
Auto merge of #140415 - ChrisDenton:rollup-r0631fv, r=ChrisDenton
Rollup of 10 pull requests
Successful merges:
- #139308 (add autodiff inline)
- #139656 (Stabilize `slice_as_chunks` library feature)
- #140022 (allow deref patterns to move out of boxes)
- #140276 (Do not compute type_of for impl item if impl where clauses are unsatisfied)
- #140302 (Move inline asm check to typeck, properly handle aliases)
- #140323 (Implement the internal feature `cfg_target_has_reliable_f16_f128`)
- #140391 (Rename sub_ptr to offset_from_unsigned in docs)
- #140394 (Make bootstrap git tests more self-contained)
- #140396 (Workaround for windows-gnu rust-lld test failure)
- #140402 (only return nested goals for `Certainty::Yes`)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
82 files changed
+1693
-519
lines changed- compiler
- rustc_codegen_cranelift/src
- rustc_codegen_gcc/src
- rustc_codegen_llvm/src
- back
- builder
- llvm
- rustc_codegen_ssa/src
- traits
- rustc_feature/src
- rustc_hir_analysis
- src
- check
- rustc_hir_typeck
- src
- fn_ctxt
- rustc_interface/src
- rustc_llvm/llvm-wrapper
- rustc_middle/src
- ty
- rustc_mir_build/src
- builder/matches
- thir/pattern
- rustc_next_trait_solver/src/solve
- eval_ctxt
- normalizes_to
- rustc_session/src/config
- rustc_span/src
- library
- alloc/src/vec
- core/src
- intrinsics
- ptr
- slice
- std
- src
- tests/floats
- src
- bootstrap/src/utils/tests
- doc/unstable-book/src/language-features
- tools/miri/tests/pass
- tests
- codegen
- autodiff
- run-make/amdgpu-kd
- ui
- asm
- async-await/in-trait
- cfg
- feature-gates
- float
- impl-trait/in-trait
- pattern/deref-patterns
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
82 files changed
+1693
-519
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3757 | 3757 |
| |
3758 | 3758 |
| |
3759 | 3759 |
| |
3760 | - | ||
3761 | 3760 |
| |
3762 | 3761 |
| |
3763 | 3762 |
| |
| |||
3796 | 3795 |
| |
3797 | 3796 |
| |
3798 | 3797 |
| |
3798 | + | ||
3799 | 3799 |
| |
3800 | 3800 |
| |
3801 | 3801 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
41 | 41 |
| |
42 | 42 |
| |
43 | 43 |
| |
44 | - | ||
45 | 44 |
| |
45 | + | ||
46 | 46 |
| |
47 | 47 |
| |
48 | 48 |
| |
| |||
178 | 178 |
| |
179 | 179 |
| |
180 | 180 |
| |
181 | - | ||
181 | + | ||
182 | 182 |
| |
183 | 183 |
| |
184 | 184 |
| |
| |||
197 | 197 |
| |
198 | 198 |
| |
199 | 199 |
| |
200 | - | ||
200 | + | ||
201 | + | ||
202 | + | ||
203 | + | ||
204 | + | ||
205 | + | ||
206 | + | ||
207 | + | ||
208 | + | ||
209 | + | ||
201 | 210 |
| |
202 | 211 |
| |
203 | 212 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
55 | 55 |
| |
56 | 56 |
| |
57 | 57 |
| |
58 | - | ||
58 | + | ||
59 | 59 |
| |
60 | 60 |
| |
61 | 61 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
102 | 102 |
| |
103 | 103 |
| |
104 | 104 |
| |
105 | - | ||
105 | + | ||
106 | 106 |
| |
107 | 107 |
| |
108 | 108 |
| |
| |||
260 | 260 |
| |
261 | 261 |
| |
262 | 262 |
| |
263 | - | ||
264 | - | ||
263 | + | ||
264 | + | ||
265 | 265 |
| |
266 | 266 |
| |
267 | 267 |
| |
| |||
485 | 485 |
| |
486 | 486 |
| |
487 | 487 |
| |
488 | - | ||
489 | - | ||
490 | - | ||
491 | - | ||
488 | + | ||
492 | 489 |
| |
493 | 490 |
| |
494 | 491 |
| |
| |||
523 | 520 |
| |
524 | 521 |
| |
525 | 522 |
| |
526 | - | ||
523 | + | ||
524 | + | ||
525 | + | ||
526 | + | ||
527 | + | ||
528 | + | ||
529 | + | ||
530 | + | ||
531 | + | ||
532 | + | ||
527 | 533 |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | - | ||
3 | 2 |
| |
4 | 3 |
| |
5 | 4 |
| |
| |||
28 | 27 |
| |
29 | 28 |
| |
30 | 29 |
| |
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
35 | + | ||
36 | + | ||
37 | + | ||
38 | + | ||
39 | + | ||
40 | + | ||
41 | + | ||
42 | + | ||
43 | + | ||
44 | + | ||
45 | + | ||
31 | 46 |
| |
32 | 47 |
| |
33 | 48 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
31 | + | ||
31 | 32 |
| |
32 | - | ||
33 | + | ||
33 | 34 |
| |
34 | 35 |
| |
35 | 36 |
| |
| |||
666 | 667 |
| |
667 | 668 |
| |
668 | 669 |
| |
670 | + | ||
671 | + | ||
672 | + | ||
673 | + | ||
674 | + | ||
675 | + | ||
676 | + | ||
677 | + | ||
678 | + | ||
679 | + | ||
680 | + | ||
681 | + | ||
682 | + | ||
683 | + | ||
684 | + | ||
685 | + | ||
686 | + | ||
687 | + | ||
688 | + | ||
689 | + | ||
690 | + | ||
691 | + | ||
692 | + | ||
693 | + | ||
694 | + | ||
669 | 695 |
| |
670 | 696 |
| |
671 | 697 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
361 | 361 |
| |
362 | 362 |
| |
363 | 363 |
| |
364 | + | ||
365 | + | ||
366 | + | ||
367 | + | ||
368 | + | ||
364 | 369 |
| |
365 | 370 |
| |
366 | 371 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
698 | 698 |
| |
699 | 699 |
| |
700 | 700 |
| |
701 | + | ||
702 | + | ||
703 | + | ||
704 | + | ||
705 | + | ||
706 | + | ||
707 | + | ||
708 | + | ||
709 | + | ||
710 | + | ||
701 | 711 |
| |
702 | 712 |
| |
703 | 713 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
29 | 29 |
| |
30 | 30 |
| |
31 | 31 |
| |
32 | - | ||
32 | + | ||
33 | 33 |
| |
34 | 34 |
| |
35 | 35 |
| |
36 | 36 |
| |
37 | 37 |
| |
38 | 38 |
| |
39 | 39 |
| |
40 | - | ||
40 | + | ||
41 | 41 |
| |
42 | 42 |
| |
43 | 43 |
| |
| |||
338 | 338 |
| |
339 | 339 |
| |
340 | 340 |
| |
341 | - | ||
342 | - | ||
341 | + | ||
342 | + | ||
343 | 343 |
| |
344 | 344 |
| |
345 | 345 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
22 | + | ||
23 | + | ||
24 | + | ||
25 | + | ||
26 | + | ||
27 | + | ||
28 | + | ||
29 | + | ||
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
22 | 35 |
| |
23 | 36 |
| |
24 | 37 |
| |
|
0 commit comments