diff options
author | Steve Chamberlain <sac@cygnus> | 1993-06-24 20:45:31 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1993-06-24 20:45:31 +0000 |
commit | ef323d70762b54e7bbcad2a235837fa0397f83da (patch) | |
tree | be1291c8a0acddd4b44d62bfcc4fcde2ced1636e /bfd | |
parent | 1835992e855809da6b7ade5b4debc0ec645a12e5 (diff) | |
download | gdb-ef323d70762b54e7bbcad2a235837fa0397f83da.zip gdb-ef323d70762b54e7bbcad2a235837fa0397f83da.tar.gz gdb-ef323d70762b54e7bbcad2a235837fa0397f83da.tar.bz2 |
Get 64bit stuff right.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/hosts/alphaosf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/hosts/alphaosf.h b/bfd/hosts/alphaosf.h index b8060bc..ab66873 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" |