diff options
author | Dave Korn <dave.korn.cygwin@gmail.com> | 2010-11-11 13:33:59 +0000 |
---|---|---|
committer | Dave Korn <davek@gcc.gnu.org> | 2010-11-11 13:33:59 +0000 |
commit | d19e0f01a118a6cf518ba9ca98a0835688303d1d (patch) | |
tree | 513e7c529763f24b384625eb562c6b0c1840cae3 /lto-plugin/ChangeLog | |
parent | a16e07c6822d6b68ecbcab07205e015363dcd4e7 (diff) | |
download | gcc-d19e0f01a118a6cf518ba9ca98a0835688303d1d.zip gcc-d19e0f01a118a6cf518ba9ca98a0835688303d1d.tar.gz gcc-d19e0f01a118a6cf518ba9ca98a0835688303d1d.tar.bz2 |
re PR bootstrap/46397 (lto-plugin.c does not build on Solaris 10/SPARC)
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.
From-SVN: r166601
Diffstat (limited to 'lto-plugin/ChangeLog')
-rw-r--r-- | lto-plugin/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lto-plugin/ChangeLog b/lto-plugin/ChangeLog index 690ea5a..3db5448 100644 --- a/lto-plugin/ChangeLog +++ b/lto-plugin/ChangeLog @@ -1,3 +1,19 @@ +2010-11-11 Dave Korn <dave.korn.cygwin@gmail.com> + + 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. + 2010-11-03 Dave Korn <dave.korn.cygwin@gmail.com> PR lto/46291 |