File tree
124 files changed
+288
-211
lines changed- compiler
- rustc_ast/src
- rustc_ast_lowering
- src
- rustc_ast_passes
- src
- rustc_codegen_gcc/src
- rustc_codegen_llvm/src
- rustc_codegen_ssa/src
- mir
- traits
- rustc_interface
- src
- rustc_monomorphize/src/mono_checks
- rustc_passes/src
- rustc_resolve/src
- rustc_target/src
- callconv
- spec
- targets
- rustc_transmute/src
- library
- core/src
- iter/traits
- ops
- std/src/collections/hash
- src/tools/clippy
- clippy_lints/src
- casts
- functions
- methods
- types
- clippy_utils/src
- ty
- tests/ui
- pattern/rfc-3627-match-ergonomics-2024/experimental
- transmutability/malformed-program-gracefulness
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
124 files changed
+288
-211
lines changedDiff for: Cargo.lock
+3
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3400 | 3400 |
| |
3401 | 3401 |
| |
3402 | 3402 |
| |
| 3403 | + | |
3403 | 3404 |
| |
3404 | 3405 |
| |
3405 | 3406 |
| |
| |||
3422 | 3423 |
| |
3423 | 3424 |
| |
3424 | 3425 |
| |
| 3426 | + | |
3425 | 3427 |
| |
3426 | 3428 |
| |
3427 | 3429 |
| |
| |||
4015 | 4017 |
| |
4016 | 4018 |
| |
4017 | 4019 |
| |
| 4020 | + | |
4018 | 4021 |
| |
4019 | 4022 |
| |
4020 | 4023 |
| |
|
Diff for: compiler/rustc_ast/src/ast.rs
+1-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3225 | 3225 |
| |
3226 | 3226 |
| |
3227 | 3227 |
| |
3228 |
| - | |
| 3228 | + | |
3229 | 3229 |
| |
3230 | 3230 |
| |
3231 | 3231 |
| |
|
Diff for: compiler/rustc_ast_lowering/Cargo.toml
+1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
| 11 | + | |
11 | 12 |
| |
12 | 13 |
| |
13 | 14 |
| |
|
Diff for: compiler/rustc_ast_lowering/src/item.rs
+11-11
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
1 | 2 |
| |
2 | 3 |
| |
3 | 4 |
| |
| |||
11 | 12 |
| |
12 | 13 |
| |
13 | 14 |
| |
14 |
| - | |
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
| |||
275 | 275 |
| |
276 | 276 |
| |
277 | 277 |
| |
278 |
| - | |
| 278 | + | |
279 | 279 |
| |
280 | 280 |
| |
281 | 281 |
| |
| |||
1470 | 1470 |
| |
1471 | 1471 |
| |
1472 | 1472 |
| |
1473 |
| - | |
1474 |
| - | |
| 1473 | + | |
| 1474 | + | |
1475 | 1475 |
| |
1476 |
| - | |
| 1476 | + | |
1477 | 1477 |
| |
1478 | 1478 |
| |
1479 | 1479 |
| |
1480 |
| - | |
| 1480 | + | |
1481 | 1481 |
| |
1482 |
| - | |
1483 |
| - | |
| 1482 | + | |
| 1483 | + | |
1484 | 1484 |
| |
1485 | 1485 |
| |
1486 | 1486 |
| |
1487 | 1487 |
| |
1488 |
| - | |
1489 |
| - | |
| 1488 | + | |
| 1489 | + | |
1490 | 1490 |
| |
1491 | 1491 |
| |
1492 | 1492 |
| |
| |||
1495 | 1495 |
| |
1496 | 1496 |
| |
1497 | 1497 |
| |
1498 |
| - | |
| 1498 | + | |
1499 | 1499 |
| |
1500 | 1500 |
| |
1501 | 1501 |
| |
|
Diff for: compiler/rustc_ast_passes/Cargo.toml
+1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
| 9 | + | |
9 | 10 |
| |
10 | 11 |
| |
11 | 12 |
| |
|
+3-4
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 |
| - | |
10 | 9 |
| |
11 | 10 |
| |
12 | 11 |
| |
| |||
77 | 76 |
| |
78 | 77 |
| |
79 | 78 |
| |
80 |
| - | |
| 79 | + | |
81 | 80 |
| |
82 |
| - | |
| 81 | + | |
83 | 82 |
| |
84 | 83 |
| |
85 |
| - | |
| 84 | + | |
86 | 85 |
| |
87 | 86 |
| |
88 | 87 |
| |
|
Diff for: compiler/rustc_codegen_gcc/src/abi.rs
+2-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | 3 |
| |
| 4 | + | |
4 | 5 |
| |
5 | 6 |
| |
6 | 7 |
| |
7 | 8 |
| |
8 | 9 |
| |
9 | 10 |
| |
10 | 11 |
| |
11 |
| - | |
| 12 | + | |
12 | 13 |
| |
13 | 14 |
| |
14 | 15 |
| |
|
Diff for: compiler/rustc_codegen_llvm/src/abi.rs
+3-4
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
7 |
| - | |
8 |
| - | |
| 7 | + | |
9 | 8 |
| |
10 | 9 |
| |
11 | 10 |
| |
| |||
440 | 439 |
| |
441 | 440 |
| |
442 | 441 |
| |
443 |
| - | |
| 442 | + | |
444 | 443 |
| |
445 | 444 |
| |
446 | 445 |
| |
| |||
574 | 573 |
| |
575 | 574 |
| |
576 | 575 |
| |
577 |
| - | |
| 576 | + | |
578 | 577 |
| |
579 | 578 |
| |
580 | 579 |
| |
|
+2-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | 3 |
| |
4 |
| - | |
| 4 | + | |
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
|
+3-3
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 |
| - | |
| 3 | + | |
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
| |||
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
17 |
| - | |
| 17 | + | |
18 | 18 |
| |
19 | 19 |
| |
20 | 20 |
| |
| |||
1545 | 1545 |
| |
1546 | 1546 |
| |
1547 | 1547 |
| |
1548 |
| - | |
| 1548 | + | |
1549 | 1549 |
| |
1550 | 1550 |
| |
1551 | 1551 |
| |
|
+1-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
1 | 2 |
| |
2 |
| - | |
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
|
+2-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
| 5 | + | |
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
|
Diff for: compiler/rustc_interface/Cargo.toml
+1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
| 10 | + | |
10 | 11 |
| |
11 | 12 |
| |
12 | 13 |
| |
|
Diff for: compiler/rustc_interface/src/tests.rs
+1-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
| 7 | + | |
7 | 8 |
| |
8 | 9 |
| |
9 | 10 |
| |
| |||
24 | 25 |
| |
25 | 26 |
| |
26 | 27 |
| |
27 |
| - | |
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
| 3 | + | |
3 | 4 |
| |
4 | 5 |
| |
5 | 6 |
| |
6 | 7 |
| |
7 | 8 |
| |
8 | 9 |
| |
9 | 10 |
| |
10 |
| - | |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
|
Diff for: compiler/rustc_passes/src/abi_test.rs
+1-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 |
| - | |
| 9 | + | |
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
|
Diff for: compiler/rustc_passes/src/check_attr.rs
+3-4
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
| 10 | + | |
10 | 11 |
| |
11 | 12 |
| |
12 | 13 |
| |
| |||
32 | 33 |
| |
33 | 34 |
| |
34 | 35 |
| |
35 |
| - | |
36 |
| - | |
37 | 36 |
| |
38 | 37 |
| |
39 | 38 |
| |
| |||
1519 | 1518 |
| |
1520 | 1519 |
| |
1521 | 1520 |
| |
1522 |
| - | |
| 1521 | + | |
1523 | 1522 |
| |
1524 | 1523 |
| |
1525 | 1524 |
| |
| |||
2445 | 2444 |
| |
2446 | 2445 |
| |
2447 | 2446 |
| |
2448 |
| - | |
| 2447 | + | |
2449 | 2448 |
| |
2450 | 2449 |
| |
2451 | 2450 |
| |
|
Diff for: compiler/rustc_resolve/src/imports.rs
+2-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1500 | 1500 |
| |
1501 | 1501 |
| |
1502 | 1502 |
| |
1503 |
| - | |
| 1503 | + | |
1504 | 1504 |
| |
1505 | 1505 |
| |
1506 | 1506 |
| |
1507 | 1507 |
| |
1508 | 1508 |
| |
1509 | 1509 |
| |
1510 | 1510 |
| |
1511 |
| - | |
| 1511 | + | |
1512 | 1512 |
| |
1513 | 1513 |
| |
1514 | 1514 |
| |
|
0 commit comments