* peicode.h (coff_swap_aouthdr_out): Delete test for .junk.
authorSteve Chamberlain <sac@cygnus>
Sun, 31 Mar 1996 10:01:29 +0000 (10:01 +0000)
committerSteve Chamberlain <sac@cygnus>
Sun, 31 Mar 1996 10:01:29 +0000 (10:01 +0000)
* coffcode.h (coff_compute_section_file_positions): Likewise.
(coff_write_object_contents): Likewise.

bfd/ChangeLog
bfd/coffcode.h
bfd/peicode.h

index be954678718316a0cafcad778bb711fcb735bc0e..21fa35056297fcce3d762489665dd043dffadb4c 100644 (file)
@@ -1,3 +1,9 @@
+Sun Mar 31 01:58:41 1996  steve chamberlain  <sac@slash.cygnus.com>
+
+       * peicode.h (coff_swap_aouthdr_out): Delete test for .junk.
+       * coffcode.h (coff_compute_section_file_positions): Likewise.
+       (coff_write_object_contents): Likewise.
+       
 Fri Mar 29 12:44:36 1996  Ian Lance Taylor  <ian@cygnus.com>
 
        * section.c (SEC_LINK_ONCE): Define.
index 7f15ef8f04fa84a2bd02b4885b6d0f2c5c193bdd..245b0ecf71a25ac03f2da9106bb6a57748efa427 100644 (file)
@@ -2106,16 +2106,6 @@ coff_compute_section_file_positions (abfd)
       if (!(current->flags & SEC_HAS_CONTENTS))
        continue;
 
-#ifdef COFF_WITH_PE
-      /* Do not include the .junk section.  This is where we collect section
-         data which we don't need.  This is mainly the MS .debug$ data which
-         stores codeview debug data. */
-      if (strcmp (current->name, ".junk") == 0)
-        {
-         continue;
-        }
-#endif
-
       /* Align the sections in the file to the same boundary on
         which they are aligned in virtual memory.  I960 doesn't
         do this (FIXME) so we can stay in sync with Intel.  960
@@ -2353,14 +2343,6 @@ coff_write_object_contents (abfd)
       struct internal_scnhdr section;
 
 #ifdef COFF_WITH_PE
-      /* Do not include the .junk section.  This is where we collect section
-        data which we don't need.  This is mainly the MS .debug$ data which
-        stores codeview debug data. */
-      if (strcmp (current->name, ".junk") == 0)
-       {
-         continue;
-       }
-
       /* If we've got a .reloc section, remember. */
 
 #ifdef COFF_IMAGE_WITH_PE
index 73637666d5cd6bb573d491275cc5e31f708784c2..4c0cf857633efc91649c5e51e1db1702abebdd9e 100644 (file)
@@ -861,11 +861,6 @@ coff_swap_aouthdr_out (abfd, in, out)
       {
        int rounded = FA(sec->_raw_size);
 
-       if (strcmp(sec->name,".junk") == 0)
-         {
-           continue;
-         }
-
        if (sec->flags & SEC_DATA) 
          dsize += rounded;
        if (sec->flags & SEC_CODE)
This page took 0.032373 seconds and 4 git commands to generate.