* libbfd.c, bfd-in.h, hosts/alphaosf.h, hosts/sparc-ll.h, aoutf1.h,

sparclynx.c, Makefile.in: Change HOST_64_BIT to BFD_HOST_64_BIT.
This commit is contained in:
Jim Kingdon
1994-02-03 03:31:22 +00:00
parent eade0c6ce8
commit 96ad107bcc
4 changed files with 12 additions and 7 deletions

View File

@@ -567,7 +567,7 @@ DESCRIPTION
/* Sign extension to bfd_signed_vma. */
#define COERCE16(x) (((bfd_signed_vma) (x) ^ 0x8000) - 0x8000)
#define COERCE32(x) (((bfd_signed_vma) (x) ^ 0x80000000) - 0x80000000)
#define EIGHT_GAZILLION (((HOST_64_BIT)0x80000000) << 32)
#define EIGHT_GAZILLION (((BFD_HOST_64_BIT)0x80000000) << 32)
#define COERCE64(x) \
(((bfd_signed_vma) (x) ^ EIGHT_GAZILLION) - EIGHT_GAZILLION)