Nick Fitzgerald
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
crates/cranelift/src/debug/transform/line_program.rs
|
|
@ -23,7 +23,7 @@ enum SavedLineProgramRow { |
|
|
|
epilogue_begin: bool, |
|
|
|
isa: u64, |
|
|
|
}, |
|
|
|
EndOfSequence(u64), |
|
|
|
EndOfSequence, |
|
|
|
} |
|
|
|
|
|
|
|
#[derive(Debug)] |
|
|
@ -167,7 +167,7 @@ where |
|
|
|
|
|
|
|
saved_rows = Vec::new(); |
|
|
|
state = ReadLineProgramState::SequenceEnded; |
|
|
|
SavedLineProgramRow::EndOfSequence(row.address()) |
|
|
|
SavedLineProgramRow::EndOfSequence |
|
|
|
} else { |
|
|
|
if state == ReadLineProgramState::SequenceEnded { |
|
|
|
// Discard sequences for non-existent code.
|
|
|
|