diff options
author | Joel Brobecker <brobecker@gnat.com> | 2004-08-02 01:25:57 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2004-08-02 01:25:57 +0000 |
commit | aa495d1148ee0ed78649de0719a9f174c55785b4 (patch) | |
tree | 962c69f1c0a232953a3f3b978519817fae3ee9c9 /gdb/dwarf2read.c | |
parent | c9d6feb8d27fea051d99b6b20c1e21c02985bdfb (diff) | |
download | gdb-aa495d1148ee0ed78649de0719a9f174c55785b4.zip gdb-aa495d1148ee0ed78649de0719a9f174c55785b4.tar.gz gdb-aa495d1148ee0ed78649de0719a9f174c55785b4.tar.bz2 |
* dwarf2read.c (dwarf_decode_lines): Do not consider the current
file as included until we record the first line in the linetable.
Diffstat (limited to 'gdb/dwarf2read.c')
-rw-r--r-- | gdb/dwarf2read.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 7d1dafa..fa11475 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -5977,6 +5977,7 @@ dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd, address += (adj_opcode / lh->line_range) * lh->minimum_instruction_length; line += lh->line_base + (adj_opcode % lh->line_range); + lh->file_names[file - 1].included_p = 1; if (!decode_for_pst_p) { /* append row to matrix using current values */ @@ -5996,6 +5997,7 @@ dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd, { case DW_LNE_end_sequence: end_sequence = 1; + lh->file_names[file - 1].included_p = 1; if (!decode_for_pst_p) record_line (current_subfile, 0, address); break; @@ -6030,6 +6032,7 @@ dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd, } break; case DW_LNS_copy: + lh->file_names[file - 1].included_p = 1; if (!decode_for_pst_p) record_line (current_subfile, line, check_cu_functions (address, cu)); @@ -6054,7 +6057,6 @@ dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd, file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read); line_ptr += bytes_read; fe = &lh->file_names[file - 1]; - fe->included_p = 1; if (fe->dir_index) dir = lh->include_dirs[fe->dir_index - 1]; else |