Skip to content

Commit 4f2588f

Browse files
committed
Remove an unnecessary continue.
Nothing comes after it within the loop.
1 parent 181fbd5 commit 4f2588f

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
@@ -158,7 +158,6 @@ impl<'tcx> Inliner<'tcx> {
158158
match self.try_inlining(caller_body, &callsite) {
159159
Err(reason) => {
160160
debug!("not-inlined {} [{}]", callsite.callee, reason);
161-
continue;
162161
}
163162
Ok(new_blocks) => {
164163
debug!("inlined {}", callsite.callee);

0 commit comments

Comments
 (0)