File tree
107 files changed
+1126
-422
lines changed- compiler
- rustc_ast/src
- rustc_ast_lowering
- src
- rustc_ast_pretty/src/pprust
- rustc_borrowck/src
- polonius
- region_infer
- type_check
- rustc_builtin_macros
- src
- rustc_codegen_cranelift/src
- rustc_codegen_gcc/src
- rustc_codegen_llvm/src
- llvm
- rustc_codegen_ssa/src
- mir
- traits
- rustc_const_eval
- src
- interpret
- transform
- rustc_feature/src
- rustc_hir/src
- rustc_hir_analysis/src
- check
- collect
- variance
- rustc_hir_pretty/src
- rustc_hir_typeck/src
- rustc_infer/src/infer/opaque_types
- rustc_llvm/llvm-wrapper
- rustc_middle/src
- mir
- thir
- ty
- rustc_mir_build/src
- build/expr
- thir
- cx
- rustc_mir_dataflow/src
- framework
- impls
- move_paths
- rustc_mir_transform/src
- coverage
- rustc_monomorphize/src
- rustc_parse/src/parser
- rustc_passes/src
- rustc_resolve/src
- rustc_smir/src/rustc_smir/convert
- rustc_span/src
- rustc_target/src/spec
- targets
- rustc_ty_utils/src
- library
- alloc/src/collections/btree
- core/src/ptr
- std/src
- io
- buffered
- src
- doc
- rustc/src
- unstable-book/src/language-features
- tools/clippy
- clippy_lints/src/loops
- clippy_utils/src
- tests
- assembly/targets
- codegen
- ui
- asm
- aarch64
- x86_64
- feature-gates
- 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.
107 files changed
+1126
-422
lines changedDiff for: compiler/rustc_ast/src/ast.rs
+4-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2302 | 2302 |
| |
2303 | 2303 |
| |
2304 | 2304 |
| |
| 2305 | + | |
| 2306 | + | |
| 2307 | + | |
2305 | 2308 |
| |
2306 | 2309 |
| |
2307 | 2310 |
| |
| |||
2311 | 2314 |
| |
2312 | 2315 |
| |
2313 | 2316 |
| |
2314 |
| - | |
| 2317 | + | |
2315 | 2318 |
| |
2316 | 2319 |
| |
2317 | 2320 |
| |
|
Diff for: compiler/rustc_ast/src/mut_visit.rs
+1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1331 | 1331 |
| |
1332 | 1332 |
| |
1333 | 1333 |
| |
| 1334 | + | |
1334 | 1335 |
| |
1335 | 1336 |
| |
1336 | 1337 |
| |
|
Diff for: compiler/rustc_ast/src/visit.rs
+1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
823 | 823 |
| |
824 | 824 |
| |
825 | 825 |
| |
| 826 | + | |
826 | 827 |
| |
827 | 828 |
| |
828 | 829 |
| |
|
+3
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
88 | 88 |
| |
89 | 89 |
| |
90 | 90 |
| |
| 91 | + | |
| 92 | + | |
| 93 | + | |
91 | 94 |
| |
92 | 95 |
| |
93 | 96 |
| |
|
Diff for: compiler/rustc_ast_lowering/src/asm.rs
+23-4
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
6 |
| - | |
7 |
| - | |
8 |
| - | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
| |||
237 | 237 |
| |
238 | 238 |
| |
239 | 239 |
| |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
| 247 | + | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
240 | 252 |
| |
241 | 253 |
| |
242 | 254 |
| |
| |||
296 | 308 |
| |
297 | 309 |
| |
298 | 310 |
| |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
299 | 317 |
| |
300 | 318 |
| |
301 | 319 |
| |
| |||
335 | 353 |
| |
336 | 354 |
| |
337 | 355 |
| |
338 |
| - | |
| 356 | + | |
| 357 | + | |
339 | 358 |
| |
340 | 359 |
| |
341 | 360 |
| |
|
+10
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
261 | 261 |
| |
262 | 262 |
| |
263 | 263 |
| |
| 264 | + | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
| 270 | + | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
264 | 274 |
| |
265 | 275 |
| |
266 | 276 |
| |
|
Diff for: compiler/rustc_ast_lowering/src/item.rs
+14-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
275 | 275 |
| |
276 | 276 |
| |
277 | 277 |
| |
278 |
| - | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
| 281 | + | |
| 282 | + | |
| 283 | + | |
| 284 | + | |
279 | 285 |
| |
280 | 286 |
| |
281 | 287 |
| |
| |||
936 | 942 |
| |
937 | 943 |
| |
938 | 944 |
| |
939 |
| - | |
| 945 | + | |
| 946 | + | |
| 947 | + | |
| 948 | + | |
| 949 | + | |
| 950 | + | |
| 951 | + | |
940 | 952 |
| |
941 | 953 |
| |
942 | 954 |
| |
|
Diff for: compiler/rustc_ast_lowering/src/lib.rs
+25-33
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
265 | 265 |
| |
266 | 266 |
| |
267 | 267 |
| |
268 |
| - | |
269 |
| - | |
| 268 | + | |
270 | 269 |
| |
271 |
| - | |
| 270 | + | |
| 271 | + | |
| 272 | + | |
272 | 273 |
| |
273 |
| - | |
274 |
| - | |
275 | 274 |
| |
276 | 275 |
| |
277 | 276 |
| |
| |||
1075 | 1074 |
| |
1076 | 1075 |
| |
1077 | 1076 |
| |
1078 |
| - | |
1079 |
| - | |
1080 |
| - | |
| 1077 | + | |
1081 | 1078 |
| |
1082 | 1079 |
| |
1083 | 1080 |
| |
| |||
1417 | 1414 |
| |
1418 | 1415 |
| |
1419 | 1416 |
| |
1420 |
| - | |
1421 |
| - | |
1422 |
| - | |
1423 |
| - | |
1424 |
| - | |
1425 |
| - | |
1426 |
| - | |
1427 |
| - | |
1428 |
| - | |
1429 |
| - | |
1430 |
| - | |
1431 |
| - | |
1432 |
| - | |
1433 |
| - | |
1434 |
| - | |
1435 |
| - | |
1436 |
| - | |
1437 |
| - | |
| 1417 | + | |
| 1418 | + | |
| 1419 | + | |
| 1420 | + | |
| 1421 | + | |
| 1422 | + | |
| 1423 | + | |
| 1424 | + | |
1438 | 1425 |
| |
1439 | 1426 |
| |
1440 | 1427 |
| |
| |||
1553 | 1540 |
| |
1554 | 1541 |
| |
1555 | 1542 |
| |
1556 |
| - | |
1557 |
| - | |
1558 |
| - | |
| 1543 | + | |
| 1544 | + | |
| 1545 | + | |
| 1546 | + | |
| 1547 | + | |
| 1548 | + | |
| 1549 | + | |
| 1550 | + | |
1559 | 1551 |
| |
1560 | 1552 |
| |
1561 | 1553 |
| |
| |||
1823 | 1815 |
| |
1824 | 1816 |
| |
1825 | 1817 |
| |
1826 |
| - | |
| 1818 | + | |
1827 | 1819 |
| |
1828 |
| - | |
| 1820 | + | |
1829 | 1821 |
| |
1830 | 1822 |
| |
1831 | 1823 |
| |
| |||
1919 | 1911 |
| |
1920 | 1912 |
| |
1921 | 1913 |
| |
1922 |
| - | |
| 1914 | + | |
1923 | 1915 |
| |
1924 |
| - | |
| 1916 | + | |
1925 | 1917 |
| |
1926 | 1918 |
| |
1927 | 1919 |
| |
|
Diff for: compiler/rustc_ast_lowering/src/path.rs
+1-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
423 | 423 |
| |
424 | 424 |
| |
425 | 425 |
| |
426 |
| - | |
| 426 | + | |
427 | 427 |
| |
428 | 428 |
| |
429 | 429 |
| |
|
+4
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1452 | 1452 |
| |
1453 | 1453 |
| |
1454 | 1454 |
| |
| 1455 | + | |
| 1456 | + | |
| 1457 | + | |
| 1458 | + | |
1455 | 1459 |
| |
1456 | 1460 |
| |
1457 | 1461 |
| |
|
Diff for: compiler/rustc_borrowck/src/lib.rs
+3-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
723 | 723 |
| |
724 | 724 |
| |
725 | 725 |
| |
726 |
| - | |
| 726 | + | |
727 | 727 |
| |
728 | 728 |
| |
729 | 729 |
| |
| |||
749 | 749 |
| |
750 | 750 |
| |
751 | 751 |
| |
752 |
| - | |
| 752 | + | |
| 753 | + | |
753 | 754 |
| |
754 | 755 |
| |
755 | 756 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
161 | 161 |
| |
162 | 162 |
| |
163 | 163 |
| |
164 |
| - | |
| 164 | + | |
165 | 165 |
| |
166 | 166 |
| |
167 | 167 |
| |
| |||
182 | 182 |
| |
183 | 183 |
| |
184 | 184 |
| |
185 |
| - | |
| 185 | + | |
| 186 | + | |
186 | 187 |
| |
187 | 188 |
| |
188 | 189 |
| |
|
+11-8
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
367 | 367 |
| |
368 | 368 |
| |
369 | 369 |
| |
370 |
| - | |
371 |
| - | |
372 |
| - | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
373 | 373 |
| |
374 | 374 |
| |
375 |
| - | |
| 375 | + | |
376 | 376 |
| |
377 |
| - | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
378 | 381 |
| |
379 | 382 |
| |
380 | 383 |
| |
| |||
395 | 398 |
| |
396 | 399 |
| |
397 | 400 |
| |
398 |
| - | |
| 401 | + | |
399 | 402 |
| |
400 | 403 |
| |
401 | 404 |
| |
| |||
409 | 412 |
| |
410 | 413 |
| |
411 | 414 |
| |
412 |
| - | |
| 415 | + | |
413 | 416 |
| |
414 | 417 |
| |
415 |
| - | |
| 418 | + | |
416 | 419 |
| |
417 | 420 |
| |
418 | 421 |
| |
|
+2-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1770 | 1770 |
| |
1771 | 1771 |
| |
1772 | 1772 |
| |
1773 |
| - | |
1774 |
| - | |
| 1773 | + | |
| 1774 | + | |
1775 | 1775 |
| |
1776 | 1776 |
| |
1777 | 1777 |
| |
|
+2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
| 22 | + | |
| 23 | + | |
22 | 24 |
| |
23 | 25 |
| |
24 | 26 |
| |
|
0 commit comments