* dwarf.c (display_debug_lines): If do_debug_lines has not been
set then default to displaying raw .debug_line section contents.
This commit is contained in:
parent
a6072eabf9
commit
008f4c7834
@ -1,3 +1,8 @@
|
||||
2009-07-17 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* dwarf.c (display_debug_lines): If do_debug_lines has not been
|
||||
set then default to displaying raw .debug_line section contents.
|
||||
|
||||
2009-07-14 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
Support unordered .debug_info references to .debug_ranges.
|
||||
|
@ -2813,6 +2813,9 @@ display_debug_lines (struct dwarf_section *section, void *file)
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (do_debug_lines == 0)
|
||||
do_debug_lines |= FLAG_DEBUG_LINES_RAW;
|
||||
|
||||
if (do_debug_lines & FLAG_DEBUG_LINES_RAW)
|
||||
retValRaw = display_debug_lines_raw (section, data, end);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user