* coffcode.h (coff_write_relocs): If SELECT_RELOC is defined, pass
authorIan Lance Taylor <ian@airs.com>
Wed, 2 Feb 1994 17:36:17 +0000 (17:36 +0000)
committerIan Lance Taylor <ian@airs.com>
Wed, 2 Feb 1994 17:36:17 +0000 (17:36 +0000)
in the internal_reloc itself, not the type.
* coff-apollo.c, coff-h8300.c, coff-h8500.c, coff-i386.c,
coff-m68k.c, coff-sh.c, coff-we32k.c, coff-z8k.c: Changed
definition of SELECT_RELOC accordingly.

bfd/ChangeLog
bfd/coffcode.h

index 7468b4cf0123f1e60dcca117341f324a83ec9197..ccfbcf2b7ad36ad6e0f8be7260dcce9332c3517b 100644 (file)
@@ -1,3 +1,11 @@
+Wed Feb  2 12:30:13 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
+
+       * coffcode.h (coff_write_relocs): If SELECT_RELOC is defined, pass
+       in the internal_reloc itself, not the type.
+       * coff-apollo.c, coff-h8300.c, coff-h8500.c, coff-i386.c,
+       coff-m68k.c, coff-sh.c, coff-we32k.c, coff-z8k.c: Changed
+       definition of SELECT_RELOC accordingly.
+
 Tue Feb  1 12:05:44 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
 
        * coffcode.h (bfd_coff_backend_data): Added new arguments to
index 7e50f2aef777a446c9c81746704d17e7d7beb0f1..5c9b576218f3e659dd82f77a570ea42e351c2c08 100644 (file)
@@ -1,5 +1,5 @@
 /* Support for the generic parts of most COFF variants, for BFD.
-   Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -1079,7 +1079,7 @@ DEFUN(coff_write_relocs,(abfd),
 
 #ifdef SELECT_RELOC
       /* Work out reloc type from what is required */
-      SELECT_RELOC(n.r_type, q->howto);
+      SELECT_RELOC(n, q->howto);
 #else
       n.r_type = q->howto->type;
 #endif
This page took 0.04472 seconds and 4 git commands to generate.