projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1835992
)
Get 64bit stuff right.
author
Steve Chamberlain
<sac@cygnus>
Thu, 24 Jun 1993 20:45:31 +0000
(20:45 +0000)
committer
Steve Chamberlain
<sac@cygnus>
Thu, 24 Jun 1993 20:45:31 +0000
(20:45 +0000)
bfd/hosts/alphaosf.h
patch
|
blob
|
history
diff --git
a/bfd/hosts/alphaosf.h
b/bfd/hosts/alphaosf.h
index b8060bce8609548d713663f78bbf0a82068c4b69..ab6687352efb4cd6980f79b11b46472aa2e718a1 100644
(file)
--- 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"