Get 64bit stuff right.
authorSteve Chamberlain <sac@cygnus>
Thu, 24 Jun 1993 20:45:31 +0000 (20:45 +0000)
committerSteve Chamberlain <sac@cygnus>
Thu, 24 Jun 1993 20:45:31 +0000 (20:45 +0000)
bfd/hosts/alphaosf.h

index b8060bce8609548d713663f78bbf0a82068c4b69..ab6687352efb4cd6980f79b11b46472aa2e718a1 100644 (file)
@@ -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"
This page took 0.024852 seconds and 4 git commands to generate.