File tree
10 files changed
+73
-3
lines changed- src
- liballoc/tests
- test/ui/const-generics
- tools
10 files changed
+73
-3
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
555 | 555 |
| |
556 | 556 |
| |
557 | 557 |
| |
| 558 | + | |
558 | 559 |
| |
559 | 560 |
| |
560 | 561 |
| |
| |||
644 | 645 |
| |
645 | 646 |
| |
646 | 647 |
| |
| 648 | + | |
647 | 649 |
| |
648 | 650 |
| |
649 | 651 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1137 | 1137 |
| |
1138 | 1138 |
| |
1139 | 1139 |
| |
| 1140 | + | |
1140 | 1141 |
| |
1141 | 1142 |
| |
1142 | 1143 |
| |
| |||
1254 | 1255 |
| |
1255 | 1256 |
| |
1256 | 1257 |
| |
| 1258 | + | |
1257 | 1259 |
| |
1258 | 1260 |
| |
1259 | 1261 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1134 | 1134 |
| |
1135 | 1135 |
| |
1136 | 1136 |
| |
| 1137 | + | |
1137 | 1138 |
| |
1138 | 1139 |
| |
1139 | 1140 |
| |
| |||
1248 | 1249 |
| |
1249 | 1250 |
| |
1250 | 1251 |
| |
| 1252 | + | |
1251 | 1253 |
| |
1252 | 1254 |
| |
1253 | 1255 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + |
- crates/cargo-test-support/src/lib.rs+8
- src/cargo/core/compiler/build_context/target_info.rs+10
- src/cargo/core/compiler/mod.rs+21-5
- src/doc/src/reference/environment-variables.md+1-1
- tests/testsuite/build.rs+24-24
- tests/testsuite/build_script.rs+3-3
- tests/testsuite/cross_compile.rs+1-1
- tests/testsuite/freshness.rs+2-2
- tests/testsuite/lto.rs+26
- tests/testsuite/main.rs+1
- tests/testsuite/profile_config.rs+1-1
- tests/testsuite/profile_overrides.rs+7-7
- tests/testsuite/profile_targets.rs+108-108
- tests/testsuite/profiles.rs+7-7
- tests/testsuite/run.rs+4-4
- tests/testsuite/rustc.rs+9-9
- tests/testsuite/rustc_info_cache.rs+6
- triagebot.toml+1
- README.md+12-2
- rust-version+1-1
- src/bin/cargo-miri.rs+13-28
- src/diagnostics.rs+5-1
- src/eval.rs+9-6
- src/lib.rs+1
- src/machine.rs+64-15
- src/shims/foreign_items/posix.rs+61-15
- src/shims/foreign_items/posix/linux.rs+1-1
- src/shims/foreign_items/posix/macos.rs+1-1
- src/shims/foreign_items/windows.rs+14-6
- src/shims/fs.rs+1-1
- src/shims/mod.rs+1
- src/shims/sync.rs+467
- src/shims/time.rs+32
- tests/compile-fail/libc_pthread_mutex_destroy_locked.rs+16
- tests/compile-fail/libc_pthread_mutex_normal_deadlock.rs+16
- tests/compile-fail/libc_pthread_mutex_normal_unlock_unlocked.rs+17
- tests/compile-fail/libc_pthread_rwlock_destroy_read_locked.rs+13
- tests/compile-fail/libc_pthread_rwlock_destroy_write_locked.rs+13
- tests/compile-fail/libc_pthread_rwlock_read_write_deadlock.rs+13
- tests/compile-fail/libc_pthread_rwlock_unlock_unlocked.rs+12
- tests/compile-fail/libc_pthread_rwlock_write_read_deadlock.rs+13
- tests/compile-fail/libc_pthread_rwlock_write_write_deadlock.rs+13
- tests/compile-fail/stack_free.rs+1-1
- tests/run-pass/float.rs+35-35
- tests/run-pass/leak-in-static.rs+8
- tests/run-pass/libc.rs+112-3
- tests/run-pass/panic/catch_panic.rs-3
- tests/run-pass/reentrant-println.rs+17
- tests/run-pass/reentrant-println.stdout+2
- tests/run-pass/sync.rs+44-10
- tests/run-pass/time.rs+13-16
- tests/run-pass/vec.rs+47
0 commit comments