OSDN Git Service

Fix arm-epoc-pe build problem:
authoramylaar <amylaar>
Tue, 13 Jun 2000 00:30:45 +0000 (00:30 +0000)
committeramylaar <amylaar>
Tue, 13 Jun 2000 00:30:45 +0000 (00:30 +0000)
* peicode.h (pe_ILF_object_p): Use TARGET_LITTLE_SYM instead of
armpei_little_vec.

bfd/ChangeLog
bfd/peicode.h

index d434658..36db421 100644 (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.
index 1c58ad0..56bc1c3 100644 (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