We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10dd833 commit 06c5d79Copy full SHA for 06c5d79
plugins/dwarf/dwarf_import/src/functions.rs
@@ -240,6 +240,9 @@ pub(crate) fn parse_lexical_block<R: ReaderType>(
240
241
if low_pc < high_pc {
242
result.insert(low_pc..high_pc);
243
+ } else if low_pc == high_pc {
244
+ // Ranges where start == end may be ignored (DWARFv5 spec, 2.17.3 line 17)
245
+ return None;
246
} else {
247
error!(
248
"Invalid lexical block range: {:#x} -> {:#x}",
0 commit comments