~ubuntu-branches/ubuntu/hoary/binutils/hoary

« back to all changes in this revision

Viewing changes to gas/dw2gencfi.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-03-18 13:07:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050318130752-j4i37zgqclj53b94
Tags: 2.15-5ubuntu2
debian/rules: Call pkgstriptranslations if present (the package does not
use debhelper, thus it does not happen automatically).

Show diffs side-by-side

added added

removed removed

Lines of Context:
857
857
    for (i = cie->first; i != cie->last; i = i->next)
858
858
      output_cfi_insn (i);
859
859
 
 
860
  frag_align (2, 0, 0);
860
861
  symbol_set_value_now (end_address);
861
862
}
862
863
 
906
907
  for (; first; first = first->next)
907
908
    output_cfi_insn (first);
908
909
 
909
 
  if (align)
910
 
    frag_align (align, 0, 0);
 
910
  frag_align (align, 0, 0);
911
911
  symbol_set_value_now (end_address);
912
912
}
913
913
 
1035
1035
      struct cie_entry *cie;
1036
1036
 
1037
1037
      cie = select_cie_for_fde (fde, &first);
1038
 
      output_fde (fde, cie, first, fde->next == NULL ? EH_FRAME_ALIGNMENT : 0);
 
1038
      output_fde (fde, cie, first, fde->next == NULL ? EH_FRAME_ALIGNMENT : 2);
1039
1039
    }
1040
1040
 
1041
1041
  flag_traditional_format = save_flag_traditional_format;