OSDN Git Service

Set the IMAGE_FILE_32BIT_MACHINE flag for PE targets.
authorNick Clifton <nickc@redhat.com>
Sat, 12 Jul 2003 10:55:05 +0000 (10:55 +0000)
committerNick Clifton <nickc@redhat.com>
Sat, 12 Jul 2003 10:55:05 +0000 (10:55 +0000)
bfd/ChangeLog
bfd/coffcode.h

index cf325a6..0a3143e 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-12  Jeff Muizelaar  <muizelaar@rogers.com>
+
+       * coffcode.h (coff_set_section_contents): Set the
+       IMAGE_FILE_32BIT_MACHINE flag for PE targets.
+
 2003-07-11  Richard Sandiford  <rsandifo@redhat.com>
 
        * bfd-in.h (bfd_h8300_pad_address): Declare.
index e9ad4df..003977e 100644 (file)
@@ -3873,7 +3873,9 @@ coff_write_object_contents (abfd)
     internal_f.f_flags |= IMAGE_FILE_DEBUG_STRIPPED;
 #endif
 
-#ifndef COFF_WITH_PE
+#ifdef COFF_WITH_PE
+  internal_f.f_flags |= IMAGE_FILE_32BIT_MACHINE;
+#else
   if (bfd_little_endian (abfd))
     internal_f.f_flags |= F_AR32WR;
   else