From 108790b8dc2298a63214d28abf8354b09878e427 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannis=20Christopher=20K=C3=B6hl?= Date: Sat, 12 Nov 2022 20:32:09 +0100 Subject: [PATCH] Remove log statement that was commented out --- compiler/rustc_mir_dataflow/src/value_analysis.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/rustc_mir_dataflow/src/value_analysis.rs b/compiler/rustc_mir_dataflow/src/value_analysis.rs index 85a35c13fd9..db4b0a3deda 100644 --- a/compiler/rustc_mir_dataflow/src/value_analysis.rs +++ b/compiler/rustc_mir_dataflow/src/value_analysis.rs @@ -623,8 +623,6 @@ impl Map { ) { // Note: The framework supports only scalars for now. if filter(ty) && ty.is_scalar() { - // trace!("registering place {:?}", PlaceRef { local, projection: &*projection }); - // We know that the projection only contains trackable elements. let place = self.make_place(local, projection).unwrap();