summaryrefslogtreecommitdiff
path: root/bfd/coff-sh.c
diff options
context:
space:
mode:
authorSvein Seldal <svein@dev.seldal.com>2003-06-04 10:47:33 +0000
committerSvein Seldal <svein@dev.seldal.com>2003-06-04 10:47:33 +0000
commit3fa785190a4f36a8889eea2fd2cb6c8ff90f3fa4 (patch)
tree710f96b9992b8cc174ba4158b7ebd9d708d0a232 /bfd/coff-sh.c
parent736694c89e263a44362c12369bbe13b0b44fdac4 (diff)
downloadbinutils-gdb-3fa785190a4f36a8889eea2fd2cb6c8ff90f3fa4.tar.gz
Altered the CREATE_xxx_COFF_TARGET_VEC macro arguments
Diffstat (limited to 'bfd/coff-sh.c')
-rw-r--r--bfd/coff-sh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/coff-sh.c b/bfd/coff-sh.c
index bcf059d299e..c9997dbedd4 100644
--- a/bfd/coff-sh.c
+++ b/bfd/coff-sh.c
@@ -3132,7 +3132,7 @@ sh_coff_get_relocated_section_contents (output_bfd, link_info, link_order,
/* The target vectors. */
#ifndef TARGET_SHL_SYM
-CREATE_BIG_COFF_TARGET_VEC (shcoff_vec, "coff-sh", BFD_IS_RELAXABLE, 0, '_', NULL)
+CREATE_BIG_COFF_TARGET_VEC (shcoff_vec, "coff-sh", BFD_IS_RELAXABLE, 0, '_', NULL, COFF_SWAP_TABLE)
#endif
#ifdef TARGET_SHL_SYM
@@ -3147,10 +3147,10 @@ CREATE_BIG_COFF_TARGET_VEC (shcoff_vec, "coff-sh", BFD_IS_RELAXABLE, 0, '_', NUL
#ifdef COFF_WITH_PE
CREATE_LITTLE_COFF_TARGET_VEC (TARGET_SYM, TARGET_SHL_NAME, BFD_IS_RELAXABLE,
- SEC_CODE | SEC_DATA, '_', NULL);
+ SEC_CODE | SEC_DATA, '_', NULL, COFF_SWAP_TABLE);
#else
CREATE_LITTLE_COFF_TARGET_VEC (TARGET_SYM, TARGET_SHL_NAME, BFD_IS_RELAXABLE,
- 0, '_', NULL)
+ 0, '_', NULL, COFF_SWAP_TABLE)
#endif
#ifndef TARGET_SHL_SYM