File tree
55 files changed
+623
-232
lines changed- compiler
- rustc_ast/src
- rustc_ast_lowering/src
- rustc_ast_pretty/src/pprust
- rustc_borrowck/src
- 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/transform
- check_consts
- rustc_feature/src
- rustc_hir_pretty/src
- rustc_llvm/llvm-wrapper
- rustc_middle/src/mir
- rustc_mir_build/src/build
- expr
- rustc_mir_dataflow/src
- framework
- impls
- move_paths
- rustc_mir_transform/src
- rustc_span/src
- src
- doc/unstable-book/src/library-features
- test
- codegen
- ui
- asm
- aarch64
- x86_64
- feature-gates
- tools/clippy/clippy_lints/src
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
55 files changed
+623
-232
lines changedDiff for: compiler/rustc_ast/src/ast.rs
+2-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1981 | 1981 |
| |
1982 | 1982 |
| |
1983 | 1983 |
| |
1984 |
| - | |
| 1984 | + | |
1985 | 1985 |
| |
1986 | 1986 |
| |
1987 | 1987 |
| |
| |||
1990 | 1990 |
| |
1991 | 1991 |
| |
1992 | 1992 |
| |
| 1993 | + | |
1993 | 1994 |
| |
1994 | 1995 |
| |
1995 | 1996 |
| |
|
Diff for: compiler/rustc_ast_lowering/src/asm.rs
+11
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
49 | 49 |
| |
50 | 50 |
| |
51 | 51 |
| |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
52 | 63 |
| |
53 | 64 |
| |
54 | 65 |
| |
|
+3
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2338 | 2338 |
| |
2339 | 2339 |
| |
2340 | 2340 |
| |
| 2341 | + | |
| 2342 | + | |
| 2343 | + | |
2341 | 2344 |
| |
2342 | 2345 |
| |
2343 | 2346 |
| |
|
Diff for: compiler/rustc_borrowck/src/dataflow.rs
+2-4
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 |
| - | |
| 8 | + | |
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
| |||
434 | 434 |
| |
435 | 435 |
| |
436 | 436 |
| |
437 |
| - | |
438 |
| - | |
439 |
| - | |
| 437 | + | |
440 | 438 |
| |
441 | 439 |
| |
442 | 440 |
| |
|
Diff for: compiler/rustc_borrowck/src/def_use.rs
+2-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
17 | 17 |
| |
18 | 18 |
| |
19 | 19 |
| |
20 |
| - | |
| 20 | + | |
21 | 21 |
| |
22 | 22 |
| |
23 | 23 |
| |
| |||
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
| 29 | + | |
29 | 30 |
| |
30 | 31 |
| |
31 | 32 |
| |
|
+1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
199 | 199 |
| |
200 | 200 |
| |
201 | 201 |
| |
| 202 | + | |
202 | 203 |
| |
203 | 204 |
| |
204 | 205 |
| |
|
Diff for: compiler/rustc_borrowck/src/lib.rs
+1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
791 | 791 |
| |
792 | 792 |
| |
793 | 793 |
| |
| 794 | + | |
794 | 795 |
| |
795 | 796 |
| |
796 | 797 |
| |
|
+7-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1828 | 1828 |
| |
1829 | 1829 |
| |
1830 | 1830 |
| |
1831 |
| - | |
| 1831 | + | |
1832 | 1832 |
| |
1833 | 1833 |
| |
1834 | 1834 |
| |
| 1835 | + | |
| 1836 | + | |
| 1837 | + | |
| 1838 | + | |
| 1839 | + | |
| 1840 | + | |
1835 | 1841 |
| |
1836 | 1842 |
| |
1837 | 1843 |
| |
|
+2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
420 | 420 |
| |
421 | 421 |
| |
422 | 422 |
| |
| 423 | + | |
| 424 | + | |
423 | 425 |
| |
424 | 426 |
| |
425 | 427 |
| |
|
+16-6
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | 3 |
| |
| 4 | + | |
4 | 5 |
| |
5 | 6 |
| |
6 | 7 |
| |
| |||
239 | 240 |
| |
240 | 241 |
| |
241 | 242 |
| |
242 |
| - | |
| 243 | + | |
| 244 | + | |
243 | 245 |
| |
244 | 246 |
| |
245 | 247 |
| |
| |||
295 | 297 |
| |
296 | 298 |
| |
297 | 299 |
| |
298 |
| - | |
| 300 | + | |
299 | 301 |
| |
300 | 302 |
| |
301 | 303 |
| |
302 | 304 |
| |
303 | 305 |
| |
304 | 306 |
| |
305 |
| - | |
| 307 | + | |
306 | 308 |
| |
307 | 309 |
| |
308 | 310 |
| |
309 | 311 |
| |
310 |
| - | |
| 312 | + | |
311 | 313 |
| |
312 | 314 |
| |
313 | 315 |
| |
| |||
378 | 380 |
| |
379 | 381 |
| |
380 | 382 |
| |
| 383 | + | |
381 | 384 |
| |
| 385 | + | |
| 386 | + | |
| 387 | + | |
| 388 | + | |
| 389 | + | |
| 390 | + | |
| 391 | + | |
382 | 392 |
| |
383 | 393 |
| |
384 |
| - | |
| 394 | + | |
385 | 395 |
| |
386 | 396 |
| |
387 | 397 |
| |
| |||
415 | 425 |
| |
416 | 426 |
| |
417 | 427 |
| |
418 |
| - | |
| 428 | + | |
419 | 429 |
| |
420 | 430 |
| |
421 | 431 |
| |
|
Diff for: compiler/rustc_codegen_gcc/src/asm.rs
+8-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
118 | 118 |
| |
119 | 119 |
| |
120 | 120 |
| |
121 |
| - | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
122 | 129 |
| |
123 | 130 |
| |
124 | 131 |
| |
|
Diff for: compiler/rustc_codegen_llvm/src/asm.rs
+28-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
| 2 | + | |
2 | 3 |
| |
3 | 4 |
| |
| 5 | + | |
4 | 6 |
| |
5 | 7 |
| |
6 | 8 |
| |
| |||
98 | 100 |
| |
99 | 101 |
| |
100 | 102 |
| |
| 103 | + | |
| 104 | + | |
101 | 105 |
| |
102 | 106 |
| |
103 | 107 |
| |
| |||
121 | 125 |
| |
122 | 126 |
| |
123 | 127 |
| |
| 128 | + | |
124 | 129 |
| |
125 | 130 |
| |
126 | 131 |
| |
| |||
355 | 360 |
| |
356 | 361 |
| |
357 | 362 |
| |
| 363 | + | |
| 364 | + | |
358 | 365 |
| |
359 | 366 |
| |
360 | 367 |
| |
| |||
447 | 454 |
| |
448 | 455 |
| |
449 | 456 |
| |
| 457 | + | |
| 458 | + | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
| 462 | + | |
450 | 463 |
| |
451 | 464 |
| |
452 | 465 |
| |
| 466 | + | |
453 | 467 |
| |
454 | 468 |
| |
455 | 469 |
| |
| |||
466 | 480 |
| |
467 | 481 |
| |
468 | 482 |
| |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
469 | 490 |
| |
470 | 491 |
| |
471 | 492 |
| |
| |||
475 | 496 |
| |
476 | 497 |
| |
477 | 498 |
| |
| 499 | + | |
478 | 500 |
| |
479 |
| - | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
480 | 507 |
| |
481 | 508 |
| |
482 | 509 |
| |
|
+2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
350 | 350 |
| |
351 | 351 |
| |
352 | 352 |
| |
| 353 | + | |
| 354 | + | |
353 | 355 |
| |
354 | 356 |
| |
355 | 357 |
| |
|
+1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1847 | 1847 |
| |
1848 | 1848 |
| |
1849 | 1849 |
| |
| 1850 | + | |
1850 | 1851 |
| |
1851 | 1852 |
| |
1852 | 1853 |
| |
|
+3-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
211 | 211 |
| |
212 | 212 |
| |
213 | 213 |
| |
| 214 | + | |
214 | 215 |
| |
215 | 216 |
| |
216 | 217 |
| |
| |||
275 | 276 |
| |
276 | 277 |
| |
277 | 278 |
| |
278 |
| - | |
279 |
| - | |
| 279 | + | |
280 | 280 |
| |
| 281 | + | |
281 | 282 |
| |
282 | 283 |
| |
283 | 284 |
| |
|
0 commit comments