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:
parent
7235427998
commit
38c24f42c9
@ -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>
|
2019-03-13 Christian Eggers <ceggers@gmx.de>
|
||||||
|
|
||||||
* dwarf2dbg.c (out_debug_line): Use octets for dwarf2 headers.
|
* dwarf2dbg.c (out_debug_line): Use octets for dwarf2 headers.
|
||||||
|
@ -1803,7 +1803,7 @@ out_debug_line (segT line_seg)
|
|||||||
exp.X_op_symbol = prologue_start;
|
exp.X_op_symbol = prologue_start;
|
||||||
exp.X_add_number = 0;
|
exp.X_add_number = 0;
|
||||||
emit_expr (&exp, sizeof_offset);
|
emit_expr (&exp, sizeof_offset);
|
||||||
symbol_set_value_now (prologue_start);
|
symbol_set_value_now_octets (prologue_start);
|
||||||
|
|
||||||
/* Parameters of the state machine. */
|
/* Parameters of the state machine. */
|
||||||
out_byte (DWARF2_LINE_MIN_INSN_LENGTH);
|
out_byte (DWARF2_LINE_MIN_INSN_LENGTH);
|
||||||
@ -1828,7 +1828,7 @@ out_debug_line (segT line_seg)
|
|||||||
|
|
||||||
out_file_list ();
|
out_file_list ();
|
||||||
|
|
||||||
symbol_set_value_now (prologue_end);
|
symbol_set_value_now_octets (prologue_end);
|
||||||
|
|
||||||
/* For each section, emit a statement program. */
|
/* For each section, emit a statement program. */
|
||||||
for (s = all_segs; s; s = s->next)
|
for (s = all_segs; s; s = s->next)
|
||||||
|
Loading…
Reference in New Issue
Block a user