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

@@ -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