dwarf2: Use octets for .debug_line prologue

Like the u32 size field at the beginning of the section, also the
prologue size must be expressed in octets.

	* dwarf2dbg.c (out_debug_line): Use octets for .debug_line prologue.
This commit is contained in:
Christian Eggers 2019-03-10 19:21:55 +01:00 committed by Alan Modra
parent 7235427998
commit 38c24f42c9
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2019-03-13 Christian Eggers <ceggers@gmx.de>
* dwarf2dbg.c (out_debug_line): Use octets for .debug_line prologue.
2019-03-13 Christian Eggers <ceggers@gmx.de>
* dwarf2dbg.c (out_debug_line): Use octets for dwarf2 headers.

View File

@ -1803,7 +1803,7 @@ out_debug_line (segT line_seg)
exp.X_op_symbol = prologue_start;
exp.X_add_number = 0;
emit_expr (&exp, sizeof_offset);
symbol_set_value_now (prologue_start);
symbol_set_value_now_octets (prologue_start);
/* Parameters of the state machine. */
out_byte (DWARF2_LINE_MIN_INSN_LENGTH);
@ -1828,7 +1828,7 @@ out_debug_line (segT line_seg)
out_file_list ();
symbol_set_value_now (prologue_end);
symbol_set_value_now_octets (prologue_end);
/* For each section, emit a statement program. */
for (s = all_segs; s; s = s->next)