* dwarf2read.c (dwarf_decode_lines): Recognize and ignore

DW_LNE_set_discriminator.
This commit is contained in:
Cary Coutant 2009-06-10 14:55:14 +00:00
parent d7a5ed35dd
commit d0c6ba3d4d
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2009-06-10 Cary Coutant <ccoutant@google.com>
* dwarf2read.c (dwarf_decode_lines): Recognize and ignore
DW_LNE_set_discriminator.
2009-06-10 Pierre Muller <muller@ics.u-strasbg.fr>
* breakpoint.c: ARI fixes.

View File

@ -7357,6 +7357,11 @@ dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd,
add_file_name (lh, cur_file, dir_index, mod_time, length);
}
break;
case DW_LNE_set_discriminator:
/* The discriminator is not interesting to the debugger;
just ignore it. */
line_ptr = extended_end;
break;
default:
complaint (&symfile_complaints,
_("mangled .debug_line section"));