mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
Remove an unnecessary continue
.
Nothing comes after it within the loop.
This commit is contained in:
parent
181fbd5ce8
commit
4f2588f23a
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user