From: Joern Rennecke Date: Tue, 13 Jun 2000 00:30:46 +0000 (+0000) Subject: Fix arm-epoc-pe build problem: X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=26bfd1c08b470834342efafbfb7c53bd0c0b3136;p=binutils-gdb.git Fix arm-epoc-pe build problem: * peicode.h (pe_ILF_object_p): Use TARGET_LITTLE_SYM instead of armpei_little_vec. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d4346586013..36db4214656 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +Tue Jun 13 01:28:57 2000 J"orn Rennecke + + * peicode.h (pe_ILF_object_p): Use TARGET_LITTLE_SYM instead of + armpei_little_vec. + 2000-06-08 David O'Brien * configure.in (VERSION): Update to show this is the CVS mainline. diff --git a/bfd/peicode.h b/bfd/peicode.h index 1c58ad0800c..56bc1c31d3c 100644 --- a/bfd/peicode.h +++ b/bfd/peicode.h @@ -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