Remove an unnecessary continue.

Nothing comes after it within the loop.
This commit is contained in:
Nicholas Nethercote 2024-08-30 15:57:43 +10:00
parent 181fbd5ce8
commit 4f2588f23a

View File

@ -158,7 +158,6 @@ impl<'tcx> Inliner<'tcx> {
match self.try_inlining(caller_body, &callsite) {
Err(reason) => {
debug!("not-inlined {} [{}]", callsite.callee, reason);
continue;
}
Ok(new_blocks) => {
debug!("inlined {}", callsite.callee);