File tree
76 files changed
+857
-200
lines changed- compiler
- rustc_ast/src
- rustc_ast_lowering
- src
- rustc_ast_pretty/src/pprust
- rustc_borrowck/src
- polonius
- 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
- rustc_hir_pretty/src
- rustc_hir_typeck/src
- rustc_llvm/llvm-wrapper
- rustc_middle/src
- mir
- thir
- 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
- src
- doc/unstable-book/src/language-features
- tools/clippy
- clippy_lints/src/loops
- clippy_utils/src
- tests
- codegen
- ui
- asm
- aarch64
- x86_64
- feature-gates
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
76 files changed
+857
-200
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 |
| |
|
+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 |
| |
|
+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 |
| |
|
+10
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
164 | 164 |
| |
165 | 165 |
| |
166 | 166 |
| |
| 167 | + | |
| 168 | + | |
| 169 | + | |
167 | 170 |
| |
168 | 171 |
| |
169 | 172 |
| |
| |||
240 | 243 |
| |
241 | 244 |
| |
242 | 245 |
| |
| 246 | + | |
243 | 247 |
| |
244 | 248 |
| |
245 | 249 |
| |
| |||
257 | 261 |
| |
258 | 262 |
| |
259 | 263 |
| |
| 264 | + | |
| 265 | + | |
| 266 | + | |
260 | 267 |
| |
261 | 268 |
| |
262 | 269 |
| |
| |||
268 | 275 |
| |
269 | 276 |
| |
270 | 277 |
| |
| 278 | + | |
| 279 | + | |
| 280 | + | |
271 | 281 |
| |
272 | 282 |
| |
273 | 283 |
| |
|
+7
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
766 | 766 |
| |
767 | 767 |
| |
768 | 768 |
| |
| 769 | + | |
| 770 | + | |
| 771 | + | |
| 772 | + | |
| 773 | + | |
| 774 | + | |
| 775 | + | |
769 | 776 |
| |
770 | 777 |
| |
771 | 778 |
| |
|
+14-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
445 | 445 |
| |
446 | 446 |
| |
447 | 447 |
| |
448 |
| - | |
| 448 | + | |
449 | 449 |
| |
450 | 450 |
| |
451 | 451 |
| |
| |||
456 | 456 |
| |
457 | 457 |
| |
458 | 458 |
| |
| 459 | + | |
| 460 | + | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
459 | 471 |
| |
460 | 472 |
| |
461 | 473 |
| |
462 | 474 |
| |
463 | 475 |
| |
464 | 476 |
| |
465 |
| - | |
| 477 | + | |
466 | 478 |
| |
467 | 479 |
| |
468 | 480 |
| |
|
+2-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
78 | 78 |
| |
79 | 79 |
| |
80 | 80 |
| |
81 |
| - | |
| 81 | + | |
| 82 | + | |
82 | 83 |
| |
83 | 84 |
| |
84 | 85 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
129 | 129 |
| |
130 | 130 |
| |
131 | 131 |
| |
| 132 | + | |
| 133 | + | |
| 134 | + | |
132 | 135 |
| |
133 | 136 |
| |
134 | 137 |
| |
|
Diff for: compiler/rustc_codegen_gcc/src/asm.rs
+28-3
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
107 | 107 |
| |
108 | 108 |
| |
109 | 109 |
| |
110 |
| - | |
| 110 | + | |
111 | 111 |
| |
112 | 112 |
| |
113 | 113 |
| |
| |||
126 | 126 |
| |
127 | 127 |
| |
128 | 128 |
| |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
129 | 133 |
| |
130 | 134 |
| |
131 | 135 |
| |
| |||
269 | 273 |
| |
270 | 274 |
| |
271 | 275 |
| |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
272 | 280 |
| |
273 | 281 |
| |
274 | 282 |
| |
| |||
368 | 376 |
| |
369 | 377 |
| |
370 | 378 |
| |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
371 | 383 |
| |
372 | 384 |
| |
373 | 385 |
| |
| |||
454 | 466 |
| |
455 | 467 |
| |
456 | 468 |
| |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
457 | 477 |
| |
458 | 478 |
| |
459 | 479 |
| |
| |||
466 | 486 |
| |
467 | 487 |
| |
468 | 488 |
| |
469 |
| - | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
470 | 495 |
| |
471 | 496 |
| |
472 | 497 |
| |
| |||
494 | 519 |
| |
495 | 520 |
| |
496 | 521 |
| |
497 |
| - | |
| 522 | + | |
498 | 523 |
| |
499 | 524 |
| |
500 | 525 |
| |
|
0 commit comments