1
Fork 0

make them structured while i'm here

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2021-10-07 10:46:47 -07:00
parent 01803025d2
commit 928c787fce
No known key found for this signature in database
GPG key ID: F9C1A595C3814436

View file

@ -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 {