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:
114d1f2
)
Corrected mistake in comment. 64bit example said it was 32 bit.
author
David Anderson
<davea@sgi.com>
Fri, 1 Sep 2000 23:47:52 +0000
(23:47 +0000)
committer
David Anderson
<davea@sgi.com>
Fri, 1 Sep 2000 23:47:52 +0000
(23:47 +0000)
gdb/defs.h
patch
|
blob
|
history
diff --git
a/gdb/defs.h
b/gdb/defs.h
index 7768ea6f13436d5d3fc5395bc28004e9949c7eb6..dd788e626624c2c8cdc4736b16a5d8af36afe5ed 100644
(file)
--- a/
gdb/defs.h
+++ b/
gdb/defs.h
@@
-801,10
+801,10
@@
enum val_prettyprint
#endif
#if !defined (ULONGEST_MAX)
-#define ULONGEST_MAX (~(ULONGEST)0) /* 0xFFFFFFFFFFFFFFFF for
32
-bits */
+#define ULONGEST_MAX (~(ULONGEST)0) /* 0xFFFFFFFFFFFFFFFF for
64
-bits */
#endif
-#if !defined (LONGEST_MAX) /* 0x7FFFFFFFFFFFFFFF for
32
-bits */
+#if !defined (LONGEST_MAX) /* 0x7FFFFFFFFFFFFFFF for
64
-bits */
#define LONGEST_MAX ((LONGEST)(ULONGEST_MAX >> 1))
#endif