+Sat Nov 18 19:43:04 1995 Richard Earnshaw (rearnsha@armltd.co.uk)
+
+ * pe-arm.c: Fix typos.
+ * coff-arm.c: Likewise.
+
+Fri Nov 17 16:22:04 1995 Kim Knuttila <krk@cygnus.com>
+
+ * coff-ppc.c (list_ele): Added "cat"egory member.
+ (record_toc): New category parameter (priv or pub).
+ (ppc_record_toc_entry): Check to see if toc bounds exceeded.
+ (ppc_process_before_allocation): Removed embrionic data-in-toc from
+ the mainline. It addes extra toc cells in error.
+ (ppc_coff_swap_sym_in_hook): Added some documentation.
+ (dump_toc): Can now diagnose "virtual toc" chicanery.
+
Fri Nov 17 10:41:25 1995 Philippe De Muyter <phdm@info.ucl.ac.be>
* elf-bfd.h (struct elf_link_hash_table): Change type of
-/* BFD back-end for Intel arm COFF files.
+/* BFD back-end for ARM COFF files.
Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
Written by Cygnus Support.
0xffffffff,
PCRELOFFSET),
};
+#ifdef COFF_WITH_PE
+/* Return true if this relocation should
+ appear in the output .reloc section. */
+
+static boolean in_reloc_p (abfd, howto)
+ bfd * abfd;
+ reloc_howto_type *howto;
+{
+ return !howto->pc_relative && howto->type != 11;
+}
+#endif
#define RTYPE2HOWTO(cache_ptr, dst) \
#include "coffcode.h"
+const bfd_target
#ifdef TARGET_LITTLE_SYM
-const bfd_target TARGET_LITTLE_SYM =
+TARGET_LITTLE_SYM =
+#else
+armcoff_little_vec =
+#endif
{
- TARGET_LITTLE_NAME, /* name or coff-arm-little */
+#ifdef TARGET_LITTLE_NAME
+ TARGET_LITTLE_NAME,
+#else
+ "coff-arm-little",
+#endif
bfd_target_coff_flavour,
false, /* data byte order is little */
false, /* header byte order is little */
COFF_SWAP_TABLE,
};
-#endif
+const bfd_target
#ifdef TARGET_BIG_SYM
-const bfd_target TARGET_BIG_SYM =
+TARGET_BIG_SYM =
+#else
+armcoff_big_vec =
+#endif
{
- TARGET_BIG_NAME, /* name or coff-arm-big */
+#ifdef TARGET_BIG_NAME
+ TARGET_BIG_NAME,
+#else
+ "coff-arm-big",
+#endif
bfd_target_coff_flavour,
true, /* data byte order is big */
true, /* header byte order is big */
COFF_SWAP_TABLE,
};
-#endif