Fix arm-epoc-pe build problem:

* peicode.h (pe_ILF_object_p): Use TARGET_LITTLE_SYM instead of
	armpei_little_vec.
This commit is contained in:
Joern Rennecke 2000-06-13 00:30:46 +00:00
parent 53d388d148
commit 26bfd1c08b
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Tue Jun 13 01:28:57 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
* peicode.h (pe_ILF_object_p): Use TARGET_LITTLE_SYM instead of
armpei_little_vec.
2000-06-08 David O'Brien <obrien@FreeBSD.org>
* configure.in (VERSION): Update to show this is the CVS mainline.

View file

@ -1166,9 +1166,9 @@ pe_ILF_object_p (bfd * abfd)
case IMAGE_FILE_MACHINE_THUMB:
#ifdef THUMBPEMAGIC
{
extern bfd_target armpei_little_vec;
extern bfd_target TARGET_LITTLE_SYM;
if (abfd->xvec == & armpei_little_vec)
if (abfd->xvec == & TARGET_LITTLE_SYM)
magic = THUMBPEMAGIC;
}
#endif