From ef323d70762b54e7bbcad2a235837fa0397f83da Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Thu, 24 Jun 1993 20:45:31 +0000 Subject: [PATCH] Get 64bit stuff right. --- bfd/hosts/alphaosf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bfd/hosts/alphaosf.h b/bfd/hosts/alphaosf.h index b8060bce86..ab6687352e 100644 --- a/bfd/hosts/alphaosf.h +++ b/bfd/hosts/alphaosf.h @@ -18,6 +18,6 @@ typedef long int64_type; #define BYTES_IN_PRINTF_INT 4 -#define uint64_typeLOW(x) (uint32_type)(((x) & 0xffffffff)) -#define uint64_typeHIGH(x) (uint32_type)(((x) >> 32) & 0xffffffff) +#define uint64_typeLOW(x) (((x) & 0xffffffff)) +#define uint64_typeHIGH(x) (((x) >> 32) & 0xffffffff) #include "fopen-same.h" -- 2.34.1