* dw2gencfi.c (output_cie, output_fde): Use DW_CFA_nop rather

than zero.
This commit is contained in:
Alan Modra 2005-02-16 05:04:09 +00:00
parent 7e3102a710
commit 4df6ce4788
2 changed files with 13 additions and 8 deletions

View file

@ -1,3 +1,8 @@
2005-02-16 Alan Modra <amodra@bigpond.net.au>
* dw2gencfi.c (output_cie, output_fde): Use DW_CFA_nop rather
than zero.
2005-02-15 Nigel Stephens <nigel@mips.com>
Maciej W. Rozycki <macro@mips.com>

View file

@ -1,5 +1,5 @@
/* dw2gencfi.c - Support for generating Dwarf2 CFI information.
Copyright 2003, 2004 Free Software Foundation, Inc.
Copyright 2003, 2004, 2005 Free Software Foundation, Inc.
Contributed by Michal Ludvig <mludvig@suse.cz>
This file is part of GAS, the GNU Assembler.
@ -863,7 +863,7 @@ output_cie (struct cie_entry *cie)
for (i = cie->first; i != cie->last; i = i->next)
output_cfi_insn (i);
frag_align (2, 0, 0);
frag_align (2, DW_CFA_nop, 0);
symbol_set_value_now (end_address);
}
@ -913,7 +913,7 @@ output_fde (struct fde_entry *fde, struct cie_entry *cie,
for (; first; first = first->next)
output_cfi_insn (first);
frag_align (align, 0, 0);
frag_align (align, DW_CFA_nop, 0);
symbol_set_value_now (end_address);
}