summaryrefslogtreecommitdiff
path: root/bfd/coff-sh.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2002-05-11 17:15:53 +0000
committerDaniel Jacobowitz <dan@debian.org>2002-05-11 17:15:53 +0000
commit3cccd481ae99ba1ad1829d5d99842511b1014774 (patch)
tree69504e3d398429f18ee725e48fb3b65e6b884919 /bfd/coff-sh.c
parentbc3088a26302a3aa23134dd0ad73b7f37bbc5a1a (diff)
downloadbinutils-redhat-3cccd481ae99ba1ad1829d5d99842511b1014774.tar.gz
2002-05-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
Daniel Jacobowitz <drow@mvista.com> * coff-sh.c (sh_reloc_map): Map to R_SH_IMM32 for non-PE. Don't map BFD_RELOC_RVA.
Diffstat (limited to 'bfd/coff-sh.c')
-rw-r--r--bfd/coff-sh.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/bfd/coff-sh.c b/bfd/coff-sh.c
index ae739968f7..d1dc4fdbcf 100644
--- a/bfd/coff-sh.c
+++ b/bfd/coff-sh.c
@@ -473,6 +473,7 @@ struct shcoff_reloc_map
unsigned char shcoff_reloc_val;
};
+#ifdef COFF_WITH_PE
/* An array mapping BFD reloc codes to SH PE relocs. */
static const struct shcoff_reloc_map sh_reloc_map[] =
{
@@ -480,6 +481,14 @@ static const struct shcoff_reloc_map sh_reloc_map[] =
{ BFD_RELOC_RVA, R_SH_IMAGEBASE },
{ BFD_RELOC_CTOR, R_SH_IMM32CE },
};
+#else
+/* An array mapping BFD reloc codes to SH PE relocs. */
+static const struct shcoff_reloc_map sh_reloc_map[] =
+{
+ { BFD_RELOC_32, R_SH_IMM32 },
+ { BFD_RELOC_CTOR, R_SH_IMM32 },
+};
+#endif
/* Given a BFD reloc code, return the howto structure for the
corresponding SH PE reloc. */