-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Commit 9748d87
Auto merge of #144269 - jieyouxu:rollup-137ysl2, r=jieyouxu
Rollup of 14 pull requests
Successful merges:
- #142097 (gpu offload host code generation)
- #143430 (Lower extra lifetimes before normal generic params.)
- #143768 (Constify Try, From, TryFrom and relevant traits)
- #143816 (Implement `check` for compiletest and RA using tool macro)
- #143985 (rustc_public: de-StableMIR-ize)
- #144027 (clippy: make tests work in stage 1)
- #144080 (Mitigate `#[align]` name resolution ambiguity regression with a rename)
- #144176 (Add approval blocking labels for new bors)
- #144187 (fix handling of base address for TypeId allocations)
- #144212 (Remove the ptr_unique lang item)
- #144243 (Subtree update of `rust-analyzer`)
- #144246 (Don't use another main test file as auxiliary)
- #144251 (rustc-dev-guide subtree update)
- #144254 (opt-dist: make `artifact-dir` an absolute path for `opt-dist local`)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
185 files changed
+2120
-1166
lines changed- compiler
- rustc_ast_lowering/src
- rustc_attr_data_structures/src
- rustc_attr_parsing/src/attributes
- rustc_codegen_llvm/src
- back
- builder
- llvm
- rustc_codegen_ssa/src/back
- rustc_const_eval/src
- const_eval
- interpret
- rustc_feature/src
- rustc_hir/src
- rustc_interface/src
- rustc_llvm/llvm-wrapper
- rustc_middle/src/middle
- rustc_mir_transform/src
- rustc_parse/src
- rustc_passes
- src
- rustc_public_bridge/src
- context
- rustc_public/src
- mir
- rustc_internal
- unstable
- convert
- stable
- internal_cx
- rustc_session/src
- rustc_span/src
- library/core/src
- array
- ascii
- char
- convert
- net
- num
- ops
- ptr
- str
- sync
- src
- bootstrap/src/core
- build_steps
- builder
- doc
- rustc-dev-guide
- src
- building
- hir
- rustdoc-internals
- tests
- ty_module
- unstable-book/src/compiler-flags
- tools
- clippy
- clippy_test_deps
- tests
- ui
- auxiliary
- miri
- src
- alloc_addresses
- borrow_tracker
- stacked_borrows
- tree_borrows
- tests/pass
- opt-dist/src
- rust-analyzer
- crates
- cfg/src
- hir-def/src/macro_expansion_tests
- hir-expand/src/builtin
- ide-assists/src
- handlers
- ide-db/src
- ide/src
- intern/src/symbol
- tt/src
- tests
- codegen
- gpu_offload
- naked-fn
- ui-fulldeps/rustc_public
- ui
- asm
- attributes
- consts
- control-flow
- feature-gates
- lifetimes
- rust-2018
- rustc_public-ir-print
- traits/const-traits
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
185 files changed
+2120
-1166
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
874 | 874 |
| |
875 | 875 |
| |
876 | 876 |
| |
877 | - | ||
877 | + | ||
878 | 878 |
| |
879 | 879 |
| |
880 | 880 |
| |
881 | 881 |
| |
882 | 882 |
| |
883 | 883 |
| |
884 | - | ||
885 | - | ||
886 | - | ||
884 | + | ||
885 | + | ||
887 | 886 |
| |
888 | 887 |
| |
889 | - | ||
890 | - | ||
891 | - | ||
892 | - | ||
893 | - | ||
894 | - | ||
895 | - | ||
888 | + | ||
889 | + | ||
890 | + | ||
891 | + | ||
892 | + | ||
893 | + | ||
894 | + | ||
895 | + | ||
896 | + | ||
897 | + | ||
898 | + | ||
899 | + | ||
900 | + | ||
901 | + | ||
902 | + | ||
896 | 903 |
| |
897 | 904 |
| |
898 | 905 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
234 | 234 |
| |
235 | 235 |
| |
236 | 236 |
| |
237 | + | ||
237 | 238 |
| |
238 | 239 |
| |
239 | 240 |
| |
|
Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
177 | 177 |
| |
178 | 178 |
| |
179 | 179 |
| |
180 | - | ||
180 | + | ||
181 | + | ||
181 | 182 |
| |
182 | 183 |
| |
183 | 184 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
274 | 274 |
| |
275 | 275 |
| |
276 | 276 |
| |
277 | - | ||
277 | + | ||
278 | 278 |
| |
279 | 279 |
| |
280 | 280 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
654 | 654 |
| |
655 | 655 |
| |
656 | 656 |
| |
657 | + | ||
657 | 658 |
| |
658 | 659 |
| |
659 | 660 |
| |
| |||
668 | 669 |
| |
669 | 670 |
| |
670 | 671 |
| |
672 | + | ||
673 | + | ||
674 | + | ||
675 | + | ||
676 | + | ||
677 | + | ||
671 | 678 |
| |
672 | 679 |
| |
673 | 680 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
6 | + | ||
6 | 7 |
| |
7 | 8 |
| |
8 | 9 |
| |
| |||
117 | 118 |
| |
118 | 119 |
| |
119 | 120 |
| |
121 | + | ||
122 | + | ||
123 | + | ||
124 | + | ||
125 | + | ||
126 | + | ||
127 | + | ||
128 | + | ||
129 | + | ||
130 | + | ||
131 | + | ||
132 | + | ||
133 | + | ||
134 | + | ||
135 | + | ||
136 | + | ||
137 | + | ||
138 | + | ||
139 | + | ||
140 | + | ||
141 | + | ||
142 | + | ||
143 | + | ||
144 | + | ||
145 | + | ||
146 | + | ||
147 | + | ||
148 | + | ||
149 | + | ||
150 | + | ||
151 | + | ||
152 | + | ||
153 | + | ||
154 | + | ||
155 | + | ||
156 | + | ||
157 | + | ||
158 | + | ||
159 | + | ||
160 | + | ||
161 | + | ||
162 | + | ||
163 | + | ||
164 | + | ||
165 | + | ||
166 | + | ||
167 | + | ||
168 | + | ||
169 | + | ||
170 | + | ||
171 | + | ||
172 | + | ||
173 | + | ||
174 | + | ||
175 | + | ||
176 | + | ||
177 | + | ||
178 | + | ||
179 | + | ||
180 | + | ||
181 | + | ||
182 | + | ||
183 | + | ||
184 | + | ||
185 | + | ||
186 | + | ||
187 | + | ||
188 | + | ||
120 | 189 |
| |
121 | 190 |
| |
122 | 191 |
| |
|
0 commit comments