mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
Fix typo introduced with previous delta.
This commit is contained in:
parent
06143382c6
commit
a2ce5bdc13
@ -1133,12 +1133,11 @@ decode_line_info (unit, stash)
|
||||
end_sequence = 1;
|
||||
add_line_info (table, address, filename, line, column,
|
||||
end_sequence);
|
||||
arange_add (unit, low_pc, high_pc);
|
||||
if (low_pc == 0 || address < low_pc)
|
||||
low_pc = address;
|
||||
if (address > high_pc)
|
||||
high_pc = address;
|
||||
arange_add (unit, low_pc, address);
|
||||
arange_add (unit, low_pc, high_pc);
|
||||
break;
|
||||
case DW_LNE_set_address:
|
||||
address = read_address (unit, line_ptr);
|
||||
|
Loading…
Reference in New Issue
Block a user