We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9792d68 commit dd6f2a2Copy full SHA for dd6f2a2
crates/codegen/src/ir.rs
@@ -283,9 +283,12 @@ impl CodeInfo {
283
}
284
// Remove if the next instruction has same line or no line.
285
else if src < src_instructions.len() - 1 {
286
- let next_lineno = src_instructions[src + 1]
287
- .lineno_override
288
- .unwrap_or_else(|| src_instructions[src + 1].location.line.get() as i32);
+ let next_lineno =
+ src_instructions[src + 1]
+ .lineno_override
289
+ .unwrap_or_else(|| {
290
+ src_instructions[src + 1].location.line.get() as i32
291
+ });
292
if next_lineno == lineno {
293
remove = true;
294
} else if next_lineno < 0 {
0 commit comments