dwarf2read: call dwarf_finish_line when ending a sequence

Commit d9b3de22f3 introduced a behaviour
change where dwarf_finish_line was not called anymore when ending a
sequence of machine instructions. This patch restores the original
behaviour.

gdb/ChangeLog:

	* dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
	 end_sequence is true.
This commit is contained in:
Simon Marchi 2015-06-10 16:34:16 -04:00
parent 8847cac2f7
commit e815d2d271
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2015-06-10 Simon Marchi <simon.marchi@ericsson.com>
* dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
end_sequence is true.
2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
Code cleanup.

View File

@ -17658,7 +17658,7 @@ dwarf_record_line (lnp_reader_state *reader, lnp_state_machine *state,
lh->file_names[file - 1].included_p = 1;
if (reader->record_lines_p && is_stmt)
{
if (state->last_subfile != current_subfile)
if (state->last_subfile != current_subfile || end_sequence)
{
dwarf_finish_line (reader->gdbarch, state->last_subfile,
state->address, state->record_line);