Cut out unused code for PE build.
This commit is contained in:
parent
3445e1cefb
commit
33d5d35156
2 changed files with 14 additions and 5 deletions
|
@ -1,7 +1,8 @@
|
||||||
Mon Nov 24 15:47:49 1997 Nick Clifton <nickc@cygnus.com>
|
Mon Nov 24 15:47:49 1997 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
* coff-arm.c: Make variables and functions static, so that this
|
* coff-arm.c: Make variables and some functions static, so that
|
||||||
file can be included in multiple object files.
|
this file can be included in multiple object files.
|
||||||
|
(coff_arm_bfd_final_link): Fix minor bug.
|
||||||
|
|
||||||
Sat Nov 22 15:16:00 1997 Nick Clifton <nickc@cygnus.com>
|
Sat Nov 22 15:16:00 1997 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
|
|
|
@ -1459,7 +1459,8 @@ coff_arm_relocate_section (output_bfd, info, input_bfd, input_section,
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static boolean
|
#ifndef COFF_WITH_PR
|
||||||
|
boolean
|
||||||
arm_allocate_interworking_sections (info)
|
arm_allocate_interworking_sections (info)
|
||||||
struct bfd_link_info *info;
|
struct bfd_link_info *info;
|
||||||
{
|
{
|
||||||
|
@ -1620,7 +1621,7 @@ record_thumb_to_arm_glue (info, h)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
static boolean
|
boolean
|
||||||
arm_process_before_allocation (abfd, info)
|
arm_process_before_allocation (abfd, info)
|
||||||
bfd * abfd;
|
bfd * abfd;
|
||||||
struct bfd_link_info * info;
|
struct bfd_link_info * info;
|
||||||
|
@ -1716,6 +1717,7 @@ arm_process_before_allocation (abfd, info)
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
#endif /* not COFF_WITH_PE */
|
||||||
|
|
||||||
#define coff_relocate_section coff_arm_relocate_section
|
#define coff_relocate_section coff_arm_relocate_section
|
||||||
|
|
||||||
|
@ -1765,6 +1767,12 @@ coff_arm_bfd_merge_private_bfd_data (ibfd, obfd)
|
||||||
/* If the two formats are different we cannot merge anything. */
|
/* If the two formats are different we cannot merge anything. */
|
||||||
if (ibfd->xvec != obfd->xvec)
|
if (ibfd->xvec != obfd->xvec)
|
||||||
{
|
{
|
||||||
|
_bfd_error_handler
|
||||||
|
("ERROR: %s is format '%s' whereas %s is format '%s'",
|
||||||
|
bfd_get_filename (ibfd), bfd_get_target(ibfd),
|
||||||
|
bfd_get_filename (obfd), bfd_get_target(obfd)
|
||||||
|
);
|
||||||
|
|
||||||
bfd_set_error (bfd_error_wrong_format);
|
bfd_set_error (bfd_error_wrong_format);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -2333,8 +2341,8 @@ coff_arm_bfd_final_link (abfd, info)
|
||||||
{
|
{
|
||||||
if (! _bfd_coff_link_input_bfd (&finfo, last_one))
|
if (! _bfd_coff_link_input_bfd (&finfo, last_one))
|
||||||
goto error_return;
|
goto error_return;
|
||||||
|
last_one->output_has_begun = true;
|
||||||
}
|
}
|
||||||
last_one->output_has_begun = true;
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue