* 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,5 +1,10 @@
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> 2005-02-15 Nigel Stephens <nigel@mips.com>
Maciej W. Rozycki <macro@mips.com> Maciej W. Rozycki <macro@mips.com>
* config/tc-mips.c (reloc_needs_lo_p): Handle * config/tc-mips.c (reloc_needs_lo_p): Handle
BFD_RELOC_MIPS16_HI16_S. BFD_RELOC_MIPS16_HI16_S.
@ -192,7 +197,7 @@
2005-02-07 Inderpreet Singh <inderpreetb@noida.hcltech.com> 2005-02-07 Inderpreet Singh <inderpreetb@noida.hcltech.com>
* config/tc-maxq.c (md_estimate_size_before_relax): Correct the * config/tc-maxq.c (md_estimate_size_before_relax): Correct the
relative jump calculation. relative jump calculation.
<md_convert_frag) : Likewise. <md_convert_frag) : Likewise.
<output_disp): Likewise. <output_disp): Likewise.
@ -411,7 +416,7 @@
2005-01-14 H.J. Lu <hongjiu.lu@intel.com> 2005-01-14 H.J. Lu <hongjiu.lu@intel.com>
PR 659 PR 659
* config/tc-i386.c (i386_scale): Disallow 0 scale. * config/tc-i386.c (i386_scale): Disallow 0 scale.
2005-01-12 Nick Clifton <nickc@redhat.com> 2005-01-12 Nick Clifton <nickc@redhat.com>
@ -486,7 +491,7 @@
* configure, Makefile.in: Rebuild. * configure, Makefile.in: Rebuild.
2004-12-22 Klaus Rudolph <lts-rudolph@gmx.de> 2004-12-22 Klaus Rudolph <lts-rudolph@gmx.de>
* config/tc-avr.c: Add support for the new R_AVR_LDI, R_AVR_6 and * 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 R_AVR_6_ADIW relocs for the LDI, ADIW/SBIW and LDD/STD
instructions. instructions.
@ -573,7 +578,7 @@
* Makefile.in: Regenerated. * Makefile.in: Regenerated.
* aclocal.m4: Likewise. * aclocal.m4: Likewise.
* configure: Likewise. * configure: Likewise.
* doc/Makefile.in: Regenerated. * doc/Makefile.in: Regenerated.
2004-12-02 Bob Wilson <bob.wilson@acm.org> 2004-12-02 Bob Wilson <bob.wilson@acm.org>

View file

@ -1,5 +1,5 @@
/* dw2gencfi.c - Support for generating Dwarf2 CFI information. /* 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> Contributed by Michal Ludvig <mludvig@suse.cz>
This file is part of GAS, the GNU Assembler. 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) for (i = cie->first; i != cie->last; i = i->next)
output_cfi_insn (i); output_cfi_insn (i);
frag_align (2, 0, 0); frag_align (2, DW_CFA_nop, 0);
symbol_set_value_now (end_address); 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) for (; first; first = first->next)
output_cfi_insn (first); output_cfi_insn (first);
frag_align (align, 0, 0); frag_align (align, DW_CFA_nop, 0);
symbol_set_value_now (end_address); symbol_set_value_now (end_address);
} }