diff options
author | Daniel Jacobowitz <drow@false.org> | 2009-02-07 20:41:09 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2009-02-07 20:41:09 +0000 |
commit | d3f36a39b66fa5f6f4791091b8c19e7c28133a1d (patch) | |
tree | 2c237801cef66d831e73b55a0619744e9f958dda | |
parent | 47a3467ae53cfd946a966476b7643bb2345d0d6e (diff) | |
download | gdb-d3f36a39b66fa5f6f4791091b8c19e7c28133a1d.zip gdb-d3f36a39b66fa5f6f4791091b8c19e7c28133a1d.tar.gz gdb-d3f36a39b66fa5f6f4791091b8c19e7c28133a1d.tar.bz2 |
* dwarf2read.c (dwarf2_build_psymtabs_hard): Move lowpc and highpc
inside the loop. Only call addrmap_set_empty if the compilation unit
had DW_AT_high_pc and DW_AT_low_pc. Update call to
scan_partial_symbols.
(scan_partial_symbols): Take NEED_PC argument and pass it along with
LOWPC and HIGHPC.
(add_partial_namespace): Take NEED_PC argument and pass it through.
(add_partial_subprogram): Take NEED_PC argument. Update the addrmap
if necessary.
-rw-r--r-- | gdb/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 83164e9..42872b0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,15 @@ +2009-02-07 Daniel Jacobowitz <dan@codesourcery.com> + + * dwarf2read.c (dwarf2_build_psymtabs_hard): Move lowpc and highpc + inside the loop. Only call addrmap_set_empty if the compilation unit + had DW_AT_high_pc and DW_AT_low_pc. Update call to + scan_partial_symbols. + (scan_partial_symbols): Take NEED_PC argument and pass it along with + LOWPC and HIGHPC. + (add_partial_namespace): Take NEED_PC argument and pass it through. + (add_partial_subprogram): Take NEED_PC argument. Update the addrmap + if necessary. + 2009-02-07 Pedro Alves <pedro@codesourcery.com> * NEWS: Mention inspecting extra signal information, $_siginfo, |