diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-26 08:19:02 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-26 08:19:02 +0000 |
commit | 1c8ad86a7b27987d2d1d620c665bfb6a28d5325d (patch) | |
tree | e28b8ab33b2de7eaa12479bdb8dfb1291a7f26d0 /gcc/config.in | |
parent | a142dffd4a046460b3e2d05481b93d5263aef6a5 (diff) | |
download | gcc-1c8ad86a7b27987d2d1d620c665bfb6a28d5325d.tar.gz |
2014-05-26 Richard Biener <rguenther@suse.de>
libcpp/
* configure.ac: Remove long long and __int64 type checks,
add check for uint64_t and fail if that wasn't found.
* include/cpplib.h (cpp_num_part): Use uint64_t.
* config.in: Regenerate.
* configure: Likewise.
gcc/
* configure.ac: Drop __int64 type check. Insist that we
found uint64_t and int64_t.
* hwint.h (HOST_BITS_PER___INT64): Remove.
(HOST_BITS_PER_WIDE_INT): Define to 64 and remove
__int64 case.
(HOST_WIDE_INT_PRINT_*): Remove 32bit case.
(HOST_WIDEST_INT*): Define to HOST_WIDE_INT*.
(HOST_WIDEST_FAST_INT): Remove __int64 case.
* vmsdbg.h (struct _DST_SRC_COMMAND): Use int64_t
for dst_q_src_df_rms_cdt.
* configure: Regenerate.
* config.in: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@210928 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/gcc/config.in b/gcc/config.in index f03ed8288a1..a3d169be1cb 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -1655,12 +1655,6 @@ #endif -/* Define to 1 if the system has the type `__int64'. */ -#ifndef USED_FOR_TARGET -#undef HAVE___INT64 -#endif - - /* Define if cloog is in use. */ #ifndef USED_FOR_TARGET #undef HAVE_cloog @@ -1807,12 +1801,6 @@ #endif -/* The size of `__int64', as computed by sizeof. */ -#ifndef USED_FOR_TARGET -#undef SIZEOF___INT64 -#endif - - /* Define to 1 if you have the ANSI C header files. */ #ifndef USED_FOR_TARGET #undef STDC_HEADERS @@ -1866,8 +1854,8 @@ #endif -/* Define to 1 if the 'long long' (or '__int64') is wider than 'long' but - still efficiently supported by the host hardware. */ +/* Define to 1 if the 'long long' type is wider than 'long' but still + efficiently supported by the host hardware. */ #ifndef USED_FOR_TARGET #undef USE_LONG_LONG_FOR_WIDEST_FAST_INT #endif |