Skip to content

Commit 5e25239

Browse files
committed
Remove an unnecessary continue.
Nothing comes after it within the loop.
1 parent 8345391 commit 5e25239

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

compiler/rustc_mir_transform/src/inline.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ impl<'tcx> Inliner<'tcx> {
156156
match self.try_inlining(caller_body, &callsite) {
157157
Err(reason) => {
158158
debug!("not-inlined {} [{}]", callsite.callee, reason);
159-
continue;
160159
}
161160
Ok(new_blocks) => {
162161
debug!("inlined {}", callsite.callee);

0 commit comments

Comments
 (0)