diff options
author | davek <davek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-11 13:33:59 +0000 |
---|---|---|
committer | davek <davek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-11 13:33:59 +0000 |
commit | 792142c2243766c4f619ff59e3b2980eb4a27d3d (patch) | |
tree | 513e7c529763f24b384625eb562c6b0c1840cae3 /lto-plugin/config.h.in | |
parent | a31ae61056fd350819543a212716695045dae2fb (diff) | |
download | gcc-792142c2243766c4f619ff59e3b2980eb4a27d3d.tar.gz |
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
Diffstat (limited to 'lto-plugin/config.h.in')
-rw-r--r-- | lto-plugin/config.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
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 |