From: Alan Modra Date: Wed, 16 Feb 2005 05:04:09 +0000 (+0000) Subject: * dw2gencfi.c (output_cie, output_fde): Use DW_CFA_nop rather X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=4df6ce4788edb2dd1aa421b098aea711a5bad9ec;p=deliverable%2Fbinutils-gdb.git * dw2gencfi.c (output_cie, output_fde): Use DW_CFA_nop rather than zero. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 6296d47085..f9106d5e79 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ +2005-02-16 Alan Modra + + * dw2gencfi.c (output_cie, output_fde): Use DW_CFA_nop rather + than zero. + 2005-02-15 Nigel Stephens - Maciej W. Rozycki + Maciej W. Rozycki * config/tc-mips.c (reloc_needs_lo_p): Handle BFD_RELOC_MIPS16_HI16_S. @@ -192,7 +197,7 @@ 2005-02-07 Inderpreet Singh * config/tc-maxq.c (md_estimate_size_before_relax): Correct the - relative jump calculation. + relative jump calculation. - PR 659 + PR 659 * config/tc-i386.c (i386_scale): Disallow 0 scale. 2005-01-12 Nick Clifton @@ -486,7 +491,7 @@ * configure, Makefile.in: Rebuild. 2004-12-22 Klaus Rudolph - + * config/tc-avr.c: Add support for the new R_AVR_LDI, R_AVR_6 and R_AVR_6_ADIW relocs for the LDI, ADIW/SBIW and LDD/STD instructions. @@ -573,7 +578,7 @@ * Makefile.in: Regenerated. * aclocal.m4: Likewise. * configure: Likewise. - * doc/Makefile.in: Regenerated. + * doc/Makefile.in: Regenerated. 2004-12-02 Bob Wilson diff --git a/gas/dw2gencfi.c b/gas/dw2gencfi.c index c77efbf9a3..41b7e18bb4 100644 --- a/gas/dw2gencfi.c +++ b/gas/dw2gencfi.c @@ -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 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); }