about summary refs log tree commit diff
path: root/compiler/rustc_pattern_analysis/src/constructor.rs
diff options
context:
space:
mode:
authorNadrieril <nadrieril+git@gmail.com>2024-03-29 19:40:54 +0100
committerNadrieril <nadrieril+git@gmail.com>2024-03-31 23:12:20 +0200
commit8cf2c0dc67d880e54be03ebb08f7f960c21bb794 (patch)
tree014c7732b57e17d78827bc714ca34820b8210e35 /compiler/rustc_pattern_analysis/src/constructor.rs
parent204805a0923d765494edf643acc16c531788b0f0 (diff)
downloadrust-8cf2c0dc67d880e54be03ebb08f7f960c21bb794.tar.gz
rust-8cf2c0dc67d880e54be03ebb08f7f960c21bb794.zip
Improve debugging experience
Diffstat (limited to 'compiler/rustc_pattern_analysis/src/constructor.rs')
-rw-r--r--compiler/rustc_pattern_analysis/src/constructor.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_pattern_analysis/src/constructor.rs b/compiler/rustc_pattern_analysis/src/constructor.rs
index 1c9a9ab0f72..49b2e510642 100644
--- a/compiler/rustc_pattern_analysis/src/constructor.rs
+++ b/compiler/rustc_pattern_analysis/src/constructor.rs
@@ -974,7 +974,6 @@ impl<Cx: PatCx> ConstructorSet<Cx> {
     /// any) are missing; 2/ split constructors to handle non-trivial intersections e.g. on ranges
     /// or slices. This can get subtle; see [`SplitConstructorSet`] for details of this operation
     /// and its invariants.
-    #[instrument(level = "debug", skip(self, ctors), ret)]
     pub fn split<'a>(
         &self,
         ctors: impl Iterator<Item = &'a Constructor<Cx>> + Clone,