Fixed initialization bug
authorSvein Seldal <svein@dev.seldal.com>
Wed, 4 Jun 2003 10:11:02 +0000 (10:11 +0000)
committerSvein Seldal <svein@dev.seldal.com>
Wed, 4 Jun 2003 10:11:02 +0000 (10:11 +0000)
bfd/ChangeLog
bfd/coff-tic4x.c

index e2bb60a868f3b93541cb647e61bfbf363ebbe303..9c00bef518afe1eca82756f213588515af4144d4 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-04  Svein E. Seldal  <Svein.Seldal@solidas.com>
+
+       * coff-tic4x.c (ticoff0_swap_table, ticoff1_swap_table): Fixed
+       initialization bug
+
 2003-06-03  Jakub Jelinek  <jakub@redhat.com>
 
        * elf.c (_bfd_elf_print_private_bfd_data): Handle PT_GNU_STACK.
index 5c8de41995c60d22371f0d48da8ec5b3b7f9ba14..8477f475d299e708aa9057758afb4c1fc2643cae 100644 (file)
@@ -299,6 +299,7 @@ static const bfd_coff_backend_data ticoff0_swap_table =
 #else
   FALSE,
 #endif
+  COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
 #ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
   TRUE,
 #else
@@ -309,7 +310,6 @@ static const bfd_coff_backend_data ticoff0_swap_table =
 #else
   2,
 #endif
-  COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
   coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
   coff_SWAP_reloc_in, ticoff0_bad_format_hook, coff_set_arch_mach_hook,
   coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
@@ -340,6 +340,7 @@ static const bfd_coff_backend_data ticoff1_swap_table =
 #else
   FALSE,
 #endif
+  COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
 #ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
   TRUE,
 #else
@@ -350,7 +351,6 @@ static const bfd_coff_backend_data ticoff1_swap_table =
 #else
   2,
 #endif
-  COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
   coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
   coff_SWAP_reloc_in, ticoff1_bad_format_hook, coff_set_arch_mach_hook,
   coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
This page took 0.028322 seconds and 4 git commands to generate.