From d376a9e2656827778a166e87d6efc12bb7ae5e90 Mon Sep 17 00:00:00 2001 From: Joern Rennecke Date: Tue, 13 Jun 2000 00:30:46 +0000 Subject: [PATCH] Fix arm-epoc-pe build problem: * peicode.h (pe_ILF_object_p): Use TARGET_LITTLE_SYM instead of armpei_little_vec. --- bfd/ChangeLog | 5 +++++ bfd/peicode.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d434658601..36db421465 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 1c58ad0800..56bc1c31d3 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 -- 2.11.0