diff options
| author | Eliza Weisman <eliza@buoyant.io> | 2021-10-07 10:46:47 -0700 |
|---|---|---|
| committer | Eliza Weisman <eliza@buoyant.io> | 2021-10-07 10:46:47 -0700 |
| commit | 928c787fcee7a15f20da3407d479b69da601644a (patch) | |
| tree | 1cb1aea14f0144e3de436fb6f46d3d649f904154 /compiler/rustc_mir_dataflow/src | |
| parent | 01803025d2afd7b6869878734fa411e8c659f68b (diff) | |
| download | rust-928c787fcee7a15f20da3407d479b69da601644a.tar.gz rust-928c787fcee7a15f20da3407d479b69da601644a.zip | |
make them structured while i'm here
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
Diffstat (limited to 'compiler/rustc_mir_dataflow/src')
| -rw-r--r-- | compiler/rustc_mir_dataflow/src/rustc_peek.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_mir_dataflow/src/rustc_peek.rs b/compiler/rustc_mir_dataflow/src/rustc_peek.rs index 214d6376c7f..ee8fca961f6 100644 --- a/compiler/rustc_mir_dataflow/src/rustc_peek.rs +++ b/compiler/rustc_mir_dataflow/src/rustc_peek.rs @@ -289,7 +289,7 @@ impl<'tcx> RustcPeekAt<'tcx> for MaybeMutBorrowedLocals<'_, 'tcx> { flow_state: &BitSet<Local>, call: PeekCall, ) { - info!("peek_at: place={:?}", place); + info!(?place, "peek_at",); let local = if let Some(l) = place.as_local() { l } else { @@ -311,7 +311,7 @@ impl<'tcx> RustcPeekAt<'tcx> for MaybeLiveLocals { flow_state: &BitSet<Local>, call: PeekCall, ) { - info!("peek_at: place={:?}", place); + info!(?place, "peek_at"); let local = if let Some(l) = place.as_local() { l } else { |
