aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto
diff options
context:
space:
mode:
authorUros Bizjak <uros@gcc.gnu.org>2013-02-07 19:01:40 +0100
committerUros Bizjak <uros@gcc.gnu.org>2013-02-07 19:01:40 +0100
commit6edc3e32a45cd1dc3466b4544f5f31278afd1c62 (patch)
tree9c29cc53d3236c8fca2ec8df62a4662e5aca37b1 /gcc/lto
parent2052ce24f1200a62154b280583f068f7f7a6ed44 (diff)
downloadgcc-6edc3e32a45cd1dc3466b4544f5f31278afd1c62.zip
gcc-6edc3e32a45cd1dc3466b4544f5f31278afd1c62.tar.gz
gcc-6edc3e32a45cd1dc3466b4544f5f31278afd1c62.tar.bz2
re PR bootstrap/56227 (Bootstrap failure on MinGW building ggc-page.c)
PR bootstrap/56227 * ggc-page.c (ggc_print_statistics): Use HOST_LONG_LONG_FORMAT instead of "ll". * config/i386/i386.c (ix86_print_operand): Ditto. lto/ChangeLog: PR bootstrap/56227 * lto.c (lto_resolution_ready): Use %wx instead of HOST_WIDE_INT_PRINT_HEX_PURE in the argument to internal_error. From-SVN: r195860
Diffstat (limited to 'gcc/lto')
-rw-r--r--gcc/lto/ChangeLog6
-rw-r--r--gcc/lto/lto.c3
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog
index 2da6ae1..6743f2f 100644
--- a/gcc/lto/ChangeLog
+++ b/gcc/lto/ChangeLog
@@ -1,3 +1,9 @@
+2013-02-07 Uros Bizjak <ubizjak@gmail.com>
+
+ PR bootstrap/56227
+ * lto.c (lto_resolution_ready): Use %wx instead of
+ HOST_WIDE_INT_PRINT_HEX_PURE in the argument to internal_error.
+
2013-02-04 Richard Guenther <rguenther@suse.de>
PR lto/56168
diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c
index 6edf87a..983fa03 100644
--- a/gcc/lto/lto.c
+++ b/gcc/lto/lto.c
@@ -2225,8 +2225,7 @@ lto_resolution_read (splay_tree file_ids, FILE *resolution, lto_file *file)
{
nd = lto_splay_tree_lookup (file_ids, id);
if (nd == NULL)
- internal_error ("resolution sub id " HOST_WIDE_INT_PRINT_HEX_PURE
- " not in object file", id);
+ internal_error ("resolution sub id %wx not in object file", id);
}
file_data = (struct lto_file_decl_data *)nd->value;