* dw2gencfi.c (output_cie, output_fde): Use DW_CFA_nop rather
authorAlan Modra <amodra@gmail.com>
Wed, 16 Feb 2005 05:04:09 +0000 (05:04 +0000)
committerAlan Modra <amodra@gmail.com>
Wed, 16 Feb 2005 05:04:09 +0000 (05:04 +0000)
than zero.

gas/ChangeLog
gas/dw2gencfi.c

index 6296d470859733e37e0962727702b37d90a99111..f9106d5e797a25c5d8e9d887fe253d3b28882f67 100644 (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>
-            Maciej W. Rozycki  <macro@mips.com>
+           Maciej W. Rozycki  <macro@mips.com>
 
        * config/tc-mips.c (reloc_needs_lo_p): Handle
        BFD_RELOC_MIPS16_HI16_S.
 2005-02-07  Inderpreet Singh <inderpreetb@noida.hcltech.com>
 
        * config/tc-maxq.c (md_estimate_size_before_relax): Correct the
-       relative jump calculation. 
+       relative jump calculation.
        <md_convert_frag) : Likewise.
        <output_disp): Likewise.
 
 
 2005-01-14  H.J. Lu  <hongjiu.lu@intel.com>
 
-       PR 659  
+       PR 659
        * config/tc-i386.c (i386_scale): Disallow 0 scale.
 
 2005-01-12  Nick Clifton  <nickc@redhat.com>
        * configure, Makefile.in: Rebuild.
 
 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
        R_AVR_6_ADIW relocs for the LDI, ADIW/SBIW and LDD/STD
        instructions.
        * Makefile.in: Regenerated.
        * aclocal.m4: Likewise.
        * configure: Likewise.
-       * doc/Makefile.in: Regenerated. 
+       * doc/Makefile.in: Regenerated.
 
 2004-12-02  Bob Wilson  <bob.wilson@acm.org>
 
index c77efbf9a365779fd0ca8a0dac3312a6b88e7bd8..41b7e18bb4d9526eee32e4e37ff445d6a0849690 100644 (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);
 }
 
This page took 0.037766 seconds and 4 git commands to generate.