* coff-sparc.c (SWAP_OUT_RELOC_EXTRA): Define to clear the r_spare
authorIan Lance Taylor <ian@airs.com>
Wed, 15 Jun 1994 19:54:15 +0000 (19:54 +0000)
committerIan Lance Taylor <ian@airs.com>
Wed, 15 Jun 1994 19:54:15 +0000 (19:54 +0000)
field of the reloc rather than letting it be garbage.

bfd/ChangeLog
bfd/coff-sparc.c

index ab47c6040b5b89c5f13514cb0662ae6a53dd940a..7f1406fbfbb7e78f8aec4f2847e66fcc4b9dfef1 100644 (file)
@@ -1,5 +1,8 @@
 Wed Jun 15 01:34:07 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
 
+       * coff-sparc.c (SWAP_OUT_RELOC_EXTRA): Define to clear the r_spare
+       field of the reloc rather than letting it be garbage.
+
        * archive.c (bfd_slurp_armap): Recognize __.SYMDEF/ as well as
        __.SYMDEF; the former was used in old Linux archives.  From
        jrs@world.std.com (Rick Sladkey).
index e1c3f3d2f80a52bd654958230ffeaf23fd5404ff..273e30bd1c0aba173ce4e04234e4e0a0c56018d5 100644 (file)
@@ -26,7 +26,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "coff/internal.h"
 #include "libcoff.h"
 
-#define BADMAG(x) ((x).f_magic != SPARCMAGIC)
+#define BADMAG(x) ((x).f_magic != SPARCMAGIC && (x).f_magic != LYNXCOFFMAGIC)
+
+/* The page size is a guess based on ELF.  */
+#define COFF_PAGE_SIZE 0x10000
 
 enum reloc_type
   {
@@ -202,8 +205,19 @@ rtype2howto (cache_ptr, dst)
     cache_ptr->addend += reloc.r_offset;                       \
   }
 
+/* Clear the r_spare field in relocs.  */
+#define SWAP_OUT_RELOC_EXTRA(abfd,src,dst) \
+  do { \
+       dst->r_spare[0] = 0; \
+       dst->r_spare[1] = 0; \
+     } while (0)
+
 #define __A_MAGIC_SET__
 
+/* Enable Sparc-specific hacks in coffcode.h. */
+
+#define COFF_SPARC
+
 #include "coffcode.h"
 
 bfd_target
@@ -224,14 +238,14 @@ bfd_target
 
   (HAS_RELOC | EXEC_P |                /* object flags */
    HAS_LINENO | HAS_DEBUG |
-   HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT),
+   HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED),
 
   (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
   0,                           /* leading underscore */
   '/',                         /* ar_pad_char */
   15,                          /* ar_max_namelen */
 
-  3,                           /* minimum alignment power */
+  2,                           /* minimum alignment power */
   bfd_getb64, bfd_getb_signed_64, bfd_putb64,
      bfd_getb32, bfd_getb_signed_32, bfd_putb32,
      bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* data */
@@ -259,4 +273,3 @@ bfd_target
 
   COFF_SWAP_TABLE,
 };
-
This page took 0.029487 seconds and 4 git commands to generate.