2011-03-09 Michael Snyder <msnyder@vmware.com>

* dwarf2dbg.c (out_file_list): Free malloced 'dir'.
	(out_debug_info): Free malloced 'dirname' and 'comp_dir'.
	(emit_fixed_inc_line_addr): Assign instead of conditional
	in assert.
This commit is contained in:
Michael Snyder 2011-03-10 00:52:09 +00:00
parent 68d6df83d0
commit 9f6db0d3fd
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2011-03-09 Michael Snyder <msnyder@vmware.com>
* dwarf2dbg.c (out_file_list): Free malloced 'dir'.
(out_debug_info): Free malloced 'dirname' and 'comp_dir'.
(emit_fixed_inc_line_addr): Assign instead of conditional
in assert.
2011-03-05 H.J. Lu <hongjiu.lu@intel.com>
* config/obj-elf.c (elf_frob_symbol): Mention symbol name in

View File

@ -1080,7 +1080,7 @@ emit_fixed_inc_line_addr (int line_delta, addressT addr_delta, fragS *frag,
symbolS *to_sym;
expressionS exp;
gas_assert (pexp->X_op = O_subtract);
gas_assert (pexp->X_op == O_subtract);
to_sym = pexp->X_add_symbol;
*p++ = DW_LNS_extended_op;
@ -1328,6 +1328,7 @@ out_file_list (void)
size = strlen (dir) + 1;
cp = frag_more (size);
memcpy (cp, dir, size);
xfree ((char *) dir);
}
/* Terminate it. */
out_byte ('\0');
@ -1684,6 +1685,7 @@ out_debug_info (segT info_seg, segT abbrev_seg, segT line_seg, segT ranges_seg)
memcpy (p, dirname, len);
INSERT_DIR_SEPARATOR (p, len);
#endif
xfree ((char *) dirname);
}
len = strlen (files[1].filename) + 1;
p = frag_more (len);
@ -1694,6 +1696,7 @@ out_debug_info (segT info_seg, segT abbrev_seg, segT line_seg, segT ranges_seg)
len = strlen (comp_dir) + 1;
p = frag_more (len);
memcpy (p, comp_dir, len);
xfree ((char *) comp_dir);
/* DW_AT_producer */
sprintf (producer, "GNU AS %s", VERSION);