diff options
Diffstat (limited to 'gas/dwarf2dbg.c')
-rw-r--r-- | gas/dwarf2dbg.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gas/dwarf2dbg.c b/gas/dwarf2dbg.c index bcf1c27..b91ba58 100644 --- a/gas/dwarf2dbg.c +++ b/gas/dwarf2dbg.c @@ -782,15 +782,14 @@ dwarf2_generate_asm_lineno (size) { bfd_vma addr; static struct dwarf2_line_info debug_line; - + /* First update the notion of the current source line. */ - dwarf2_where (& debug_line); - + dwarf2_where (&debug_line); + /* We want the offset of the start of this instruction within the the current frag. */ addr = frag_now->fr_address + frag_now_fix () - size; - + /* And record the information. */ - dwarf2_gen_line_info (addr, & debug_line); + dwarf2_gen_line_info (addr, &debug_line); } - |