about summary refs log tree commit diff
path: root/compiler/rustc_mir_transform/src/coverage/debug.rs
diff options
context:
space:
mode:
authorCaio <c410.f3r@gmail.com>2022-03-01 07:43:12 -0300
committerCaio <c410.f3r@gmail.com>2022-03-01 07:43:12 -0300
commit7aa5ea9a4a10a657dbfa58c12a11aa2cd0b5bc32 (patch)
treea16ff2183eeabf950eb3ac769ad98187edc08466 /compiler/rustc_mir_transform/src/coverage/debug.rs
parent6e5a6ffb14fc47051b0a23410c681ad6e4af045f (diff)
downloadrust-7aa5ea9a4a10a657dbfa58c12a11aa2cd0b5bc32.tar.gz
rust-7aa5ea9a4a10a657dbfa58c12a11aa2cd0b5bc32.zip
7 - Make more use of `let_chains`
Continuation of #94376.

cc #53667
Diffstat (limited to 'compiler/rustc_mir_transform/src/coverage/debug.rs')
-rw-r--r--compiler/rustc_mir_transform/src/coverage/debug.rs14
1 files changed, 6 insertions, 8 deletions
diff --git a/compiler/rustc_mir_transform/src/coverage/debug.rs b/compiler/rustc_mir_transform/src/coverage/debug.rs
index 62e060c8e0c..8e28ed2426b 100644
--- a/compiler/rustc_mir_transform/src/coverage/debug.rs
+++ b/compiler/rustc_mir_transform/src/coverage/debug.rs
@@ -357,14 +357,12 @@ impl DebugCounters {
         if let Some(counters) = &self.some_counters {
             if let Some(DebugCounter { counter_kind, some_block_label }) = counters.get(&operand) {
                 if let CoverageKind::Expression { .. } = counter_kind {
-                    if let Some(block_label) = some_block_label {
-                        if debug_options().counter_format.block {
-                            return format!(
-                                "{}:({})",
-                                block_label,
-                                self.format_counter_kind(counter_kind)
-                            );
-                        }
+                    if let Some(label) = some_block_label && debug_options().counter_format.block {
+                        return format!(
+                            "{}:({})",
+                            label,
+                            self.format_counter_kind(counter_kind)
+                        );
                     }
                     return format!("({})", self.format_counter_kind(counter_kind));
                 }