coff-i386.c (i3coff_object_p): Now static.
This commit is contained in:
parent
f3bb56f1c8
commit
cbd8493e6c
2 changed files with 16 additions and 3 deletions
|
@ -1,5 +1,7 @@
|
||||||
Wed Oct 13 14:28:17 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
|
Wed Oct 13 14:28:17 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
|
||||||
|
|
||||||
|
* coff-i386.c (i3coff_object_p): Now static.
|
||||||
|
|
||||||
* Makefile.in: Updated dependencies.
|
* Makefile.in: Updated dependencies.
|
||||||
(.dep, .dep1, dep.sed): New targets, to make "make dep" work
|
(.dep, .dep1, dep.sed): New targets, to make "make dep" work
|
||||||
better.
|
better.
|
||||||
|
|
|
@ -284,11 +284,22 @@ static reloc_howto_type howto_table[] =
|
||||||
cache_ptr->addend += asect->vma; \
|
cache_ptr->addend += asect->vma; \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* For aix386, define a variable to track the number of sections discarded
|
||||||
|
during a strip. */
|
||||||
|
|
||||||
|
#if defined(_AIX) && defined(_I386)
|
||||||
|
#define USE_DISCARDED_SECTIONS_COUNT
|
||||||
|
int discarded_sections_count = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "coffcode.h"
|
#include "coffcode.h"
|
||||||
|
|
||||||
bfd_target *i3coff_object_p(a)
|
static bfd_target *
|
||||||
bfd *a ;
|
i3coff_object_p(a)
|
||||||
{ return coff_object_p(a); }
|
bfd *a;
|
||||||
|
{
|
||||||
|
return coff_object_p(a);
|
||||||
|
}
|
||||||
|
|
||||||
bfd_target
|
bfd_target
|
||||||
#ifdef TARGET_SYM
|
#ifdef TARGET_SYM
|
||||||
|
|
Loading…
Reference in a new issue