From 792142c2243766c4f619ff59e3b2980eb4a27d3d Mon Sep 17 00:00:00 2001 From: davek Date: Thu, 11 Nov 2010 13:33:59 +0000 Subject: PR bootstrap/46397 PR bootstrap/46362 * configure.ac: Add AC_TYPE_INT64_T test. * config.h.in: Regenerate. * configure: Likewise. * lto-plugin.c (debug): Use char not bool. (nop): Likewise. (check_1): Rename from check, and use int not bool for gate argument. (check): Macro wrapper for the above to coerce gate argument into boolean-valued integer in case it has pointer type. (parse_table_entry): Use 0 not false. (claim_file_handler): Avoid use of PRIx64 by splitting 64-bit size into two 32-bit parts and printing as hex ints. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166601 138bc75d-0d04-0410-961f-82ee72b054a4 --- lto-plugin/config.h.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lto-plugin/config.h.in') diff --git a/lto-plugin/config.h.in b/lto-plugin/config.h.in index d7750f1e9e8..9c99e88b954 100644 --- a/lto-plugin/config.h.in +++ b/lto-plugin/config.h.in @@ -75,6 +75,10 @@ #define below would cause a syntax error. */ #undef _UINT64_T +/* Define to the type of a signed integer type of width exactly 64 bits if + such a type exists and the standard includes do not define it. */ +#undef int64_t + /* Define to the type of an unsigned integer type of width exactly 64 bits if such a type exists and the standard includes do not define it. */ #undef uint64_t -- cgit v1.2.1