diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1991-04-26 23:05:38 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1991-04-26 23:05:38 +0000 |
commit | d166df9b4e643492b97c1866db240d3f8114ad0d (patch) | |
tree | c0814de05b9f7b882a3ce61826ab52afb6b38f43 /gdb/defs.h | |
parent | ea9cdf62c64a3d65a71b7f557f4ebd311ab0858b (diff) | |
download | binutils-d166df9b4e643492b97c1866db240d3f8114ad0d.tar.gz binutils-d166df9b4e643492b97c1866db240d3f8114ad0d.tar.bz2 binutils-d166df9b4e643492b97c1866db240d3f8114ad0d.zip |
defs.h (TARGET_LONG_LONG_BIT): New macro.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/defs.h b/gdb/defs.h index 57635f15d08..983eb7f43bc 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -175,4 +175,10 @@ char *baud_rate; #define TARGET_CHAR_BIT 8 #endif +/* Number of bits in a long long or unsigned long long + for the target machine. */ +#if !defined (TARGET_LONG_LONG_BIT) +#define TARGET_LONG_LONG_BIT 64 +#endif + #endif /* no DEFS_H */ |