diff options
author | Richard Biener <rguenther@suse.de> | 2014-05-20 08:01:32 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2014-05-20 08:01:32 +0000 |
commit | 54da09ee2062f41141dbfd116975ee20509a96e3 (patch) | |
tree | b0ae04d799914545c090c859c13d25a91264e970 /gcc/hwint.h | |
parent | 74145685ed423198e739bc1eba4ebed843207341 (diff) | |
download | gcc-54da09ee2062f41141dbfd116975ee20509a96e3.zip gcc-54da09ee2062f41141dbfd116975ee20509a96e3.tar.gz gcc-54da09ee2062f41141dbfd116975ee20509a96e3.tar.bz2 |
config.gcc: Remove need_64bit_hwint.
2014-05-20 Richard Biener <rguenther@suse.de>
gcc/
* config.gcc: Remove need_64bit_hwint.
* configure.ac: Do not define NEED_64BIT_HOST_WIDE_INT.
* hwint.h: Do not check NEED_64BIT_HOST_WIDE_INT but assume
it to be true.
* config.in: Regenerate.
* configure: Likewise.
libcpp/
* configure.ac: Copy gcc logic of detecting a 64bit type.
Remove HOST_WIDE_INT define.
* include/cpplib.h: typedef cpp_num_part to a 64bit type,
similar to how hwint.h does it.
* config.in: Regenerate.
* configure: Likewise.
From-SVN: r210632
Diffstat (limited to 'gcc/hwint.h')
-rw-r--r-- | gcc/hwint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/hwint.h b/gcc/hwint.h index ac9c9a2..4cc4614b 100644 --- a/gcc/hwint.h +++ b/gcc/hwint.h @@ -56,7 +56,7 @@ extern char sizeof_long_long_must_be_8[sizeof (long long) == 8 ? 1 : -1]; Thus, we use that unless we have to use 'long long' or '__int64' because we're targeting a 64-bit machine from a 32-bit host. */ -#if HOST_BITS_PER_LONG >= 64 || !defined NEED_64BIT_HOST_WIDE_INT +#if HOST_BITS_PER_LONG >= 64 # define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_LONG # define HOST_WIDE_INT long # define HOST_WIDE_INT_C(X) X ## L |