diff options
| author | Zalathar <Zalathar@users.noreply.github.com> | 2025-08-02 18:20:56 +1000 |
|---|---|---|
| committer | Zalathar <Zalathar@users.noreply.github.com> | 2025-08-04 13:48:40 +1000 |
| commit | 51e62a09a376e30838db0d8ade4e3e89508357e0 (patch) | |
| tree | 28e1b4a4c55f96a3ddd06adb747c6a9b98119127 /compiler/rustc_interface/src | |
| parent | 16843ce427965a39a5f226ce3057ba3c2f5ed23c (diff) | |
| download | rust-51e62a09a376e30838db0d8ade4e3e89508357e0.tar.gz rust-51e62a09a376e30838db0d8ade4e3e89508357e0.zip | |
coverage: Remove `-Zcoverage-options=no-mir-spans`
This flag turned out to be less useful than anticipated, and interferes with work towards expansion support.
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs index 8771bb44050..86faab62d03 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -778,8 +778,8 @@ fn test_unstable_options_tracking_hash() { coverage_options, CoverageOptions { level: CoverageLevel::Mcdc, - no_mir_spans: true, - discard_all_spans_in_codegen: true + // (don't collapse test-only options onto the same line) + discard_all_spans_in_codegen: true, } ); tracked!(crate_attr, vec!["abc".to_string()]); |
