Fix ICE with --cap-lints=allow
and -Zfuel=...=0
This commit is contained in:
parent
3bb9eecf07
commit
8c5bdb973a
2 changed files with 14 additions and 1 deletions
|
@ -902,7 +902,12 @@ impl Session {
|
|||
let mut fuel = self.optimization_fuel.lock();
|
||||
ret = fuel.remaining != 0;
|
||||
if fuel.remaining == 0 && !fuel.out_of_fuel {
|
||||
self.warn(&format!("optimization-fuel-exhausted: {}", msg()));
|
||||
if self.diagnostic().can_emit_warnings() {
|
||||
// We only call `msg` in case we can actually emit warnings.
|
||||
// Otherwise, this could cause a `delay_good_path_bug` to
|
||||
// trigger (issue #79546).
|
||||
self.warn(&format!("optimization-fuel-exhausted: {}", msg()));
|
||||
}
|
||||
fuel.out_of_fuel = true;
|
||||
} else if fuel.remaining > 0 {
|
||||
fuel.remaining -= 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue