X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=binutils%2Fsysdep.h;h=f28d9dcd460b9557e59056eee7ec66482788f74e;hb=128e85e3ab36b8e30f6612fb50de3cbb4ede6824;hp=490f51c8fd6cbfecd5da8e0b3d3ba7224b1c6636;hpb=b90efa5b79ac1524ec260f8eb89d1be37e0219a7;p=deliverable%2Fbinutils-gdb.git diff --git a/binutils/sysdep.h b/binutils/sysdep.h index 490f51c8fd..f28d9dcd46 100644 --- a/binutils/sysdep.h +++ b/binutils/sysdep.h @@ -1,5 +1,5 @@ /* sysdep.h -- handle host dependencies for binutils - Copyright (C) 1991-2015 Free Software Foundation, Inc. + Copyright (C) 1991-2016 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -187,4 +187,12 @@ size_t strnlen (const char *, size_t); # endif #endif +#if defined HAVE_LONG_LONG && SIZEOF_LONG_LONG > SIZEOF_LONG +/* We can't use any bfd types here since readelf may define BFD64 and + objdump may not. */ +#define HOST_WIDEST_INT long long +#else +#define HOST_WIDEST_INT long +#endif + #endif /* _BIN_SYSDEP_H */