Remove an unnecessary continue
.
Nothing comes after it within the loop.
This commit is contained in:
parent
181fbd5ce8
commit
4f2588f23a
1 changed files with 0 additions and 1 deletions
|
@ -158,7 +158,6 @@ impl<'tcx> Inliner<'tcx> {
|
||||||
match self.try_inlining(caller_body, &callsite) {
|
match self.try_inlining(caller_body, &callsite) {
|
||||||
Err(reason) => {
|
Err(reason) => {
|
||||||
debug!("not-inlined {} [{}]", callsite.callee, reason);
|
debug!("not-inlined {} [{}]", callsite.callee, reason);
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
Ok(new_blocks) => {
|
Ok(new_blocks) => {
|
||||||
debug!("inlined {}", callsite.callee);
|
debug!("inlined {}", callsite.callee);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue