Rollup merge of #85973 - LingMan:indentation, r=jyn514
Replace a `match` with an `if let` Seems like a better fit here and saves one level of indentation. `@rustbot` modify labels +C-cleanup +T-compiler
This commit is contained in:
commit
7fcfe05680
1 changed files with 22 additions and 25 deletions
|
@ -16,8 +16,7 @@ impl<'tcx> MirPass<'tcx> for RemoveZsts {
|
|||
let (basic_blocks, local_decls) = body.basic_blocks_and_local_decls_mut();
|
||||
for block in basic_blocks.iter_mut() {
|
||||
for statement in block.statements.iter_mut() {
|
||||
match statement.kind {
|
||||
StatementKind::Assign(box (place, _)) => {
|
||||
if let StatementKind::Assign(box (place, _)) = statement.kind {
|
||||
let place_ty = place.ty(local_decls, tcx).ty;
|
||||
if !maybe_zst(place_ty) {
|
||||
continue;
|
||||
|
@ -41,8 +40,6 @@ impl<'tcx> MirPass<'tcx> for RemoveZsts {
|
|||
statement.make_nop();
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue