diff options
| author | Rémy Rakic <remy.rakic+github@gmail.com> | 2023-11-22 15:13:16 +0000 |
|---|---|---|
| committer | Rémy Rakic <remy.rakic+github@gmail.com> | 2023-12-01 14:02:34 +0000 |
| commit | eddd3a7381bfeb48d220f518f8aaaea1dda59115 (patch) | |
| tree | a75f7400f0d7b94a9719539116b037507801d533 | |
| parent | caf730043232affb6b10d1393895998cb4968520 (diff) | |
| download | rust-eddd3a7381bfeb48d220f518f8aaaea1dda59115.tar.gz rust-eddd3a7381bfeb48d220f518f8aaaea1dda59115.zip | |
remove useless debug log
| -rw-r--r-- | compiler/rustc_borrowck/src/type_check/liveness/trace.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_borrowck/src/type_check/liveness/trace.rs b/compiler/rustc_borrowck/src/type_check/liveness/trace.rs index 02ccf928d8e..12b1a101392 100644 --- a/compiler/rustc_borrowck/src/type_check/liveness/trace.rs +++ b/compiler/rustc_borrowck/src/type_check/liveness/trace.rs @@ -49,8 +49,6 @@ pub(super) fn trace<'mir, 'tcx>( boring_locals: Vec<Local>, polonius_drop_used: Option<Vec<(Local, Location)>>, ) { - debug!("trace()"); - let local_use_map = &LocalUseMap::build(&relevant_live_locals, elements, body); // When using `-Zpolonius=next`, compute the set of loans that can reach a given region. |
