aboutsummaryrefslogtreecommitdiff
path: root/bfd/hosts
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1994-02-03 03:31:22 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1994-02-03 03:31:22 +0000
commit96ad107bcc9a8adb87dc4ce233b0d17c5e61db96 (patch)
treec804a8ad5e5feb6d9a8aa6018cbd62b80247841c /bfd/hosts
parenteade0c6ce8bc6432131360656fd44516d1c70a70 (diff)
downloadgdb-96ad107bcc9a8adb87dc4ce233b0d17c5e61db96.zip
gdb-96ad107bcc9a8adb87dc4ce233b0d17c5e61db96.tar.gz
gdb-96ad107bcc9a8adb87dc4ce233b0d17c5e61db96.tar.bz2
* 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.
Diffstat (limited to 'bfd/hosts')
-rw-r--r--bfd/hosts/alphaosf.h10
-rw-r--r--bfd/hosts/sparc-ll.h2
2 files changed, 6 insertions, 6 deletions
diff --git a/bfd/hosts/alphaosf.h b/bfd/hosts/alphaosf.h
index bb341b6..670c2fc 100644
--- a/bfd/hosts/alphaosf.h
+++ b/bfd/hosts/alphaosf.h
@@ -12,15 +12,15 @@
/* Make the basic types 64-bit quantities on the host.
Also provide the support macros BFD needs. */
-#define HOST_64_BIT long
-#define sprintf_vma(s,x) sprintf (s, "%016lx", x) /* HOST_64_BIT */
-#define fprintf_vma(f,x) fprintf (f, "%016lx", x) /* HOST_64_BIT */
+#define BFD_HOST_64_BIT long
+#define sprintf_vma(s,x) sprintf (s, "%016lx", x) /* BFD_HOST_64_BIT */
+#define fprintf_vma(f,x) fprintf (f, "%016lx", x) /* BFD_HOST_64_BIT */
#define BYTES_IN_PRINTF_INT 4
/* These must have type unsigned long because they are used as
arguments in printf functions. */
-#define uint64_typeLOW(x) ((unsigned long) (((x) & 0xffffffff))) /* HOST_64_BIT */
-#define uint64_typeHIGH(x) ((unsigned long) (((x) >> 32) & 0xffffffff)) /* HOST_64_BIT */
+#define uint64_typeLOW(x) ((unsigned long) (((x) & 0xffffffff))) /* BFD_HOST_64_BIT */
+#define uint64_typeHIGH(x) ((unsigned long) (((x) >> 32) & 0xffffffff)) /* BFD_HOST_64_BIT */
#include "fopen-same.h"
diff --git a/bfd/hosts/sparc-ll.h b/bfd/hosts/sparc-ll.h
index f2578d0..23fc3bd 100644
--- a/bfd/hosts/sparc-ll.h
+++ b/bfd/hosts/sparc-ll.h
@@ -18,7 +18,7 @@
#define SEEK_CUR 1
/* Make the basic types 64-bit quantities on the host */
-#define HOST_64_BIT long long
+#define BFD_HOST_64_BIT long long
extern int abort PARAMS ((void));
extern int close PARAMS ((int));