From patchwork Thu Sep 9 19:29:00 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: : Fix bootstrap failure in dwarf2out for x86_64-*-mingw32 Date: Thu, 09 Sep 2010 09:29:00 -0000 From: Kai Tietz X-Patchwork-Id: 64320 Message-Id: To: GCC Patches Hello, ChangeLog 2010-09-09 Kai Tietz * dwarf2out.c (get_ref_die_offset_label): Cast die_offset to HWINT. Tested for x86_64-pc-linux-gnu, i686-pc-mingw32, and x86_64-w64-mingw32. Ok for apply? Kai Index: dwarf2out.c =================================================================== --- dwarf2out.c (revision 164107) +++ dwarf2out.c (working copy) @@ -6546,7 +6546,7 @@ get_ref_die_offset_label (char *label, dw_die_ref ref) { sprintf (label, "%s+" HOST_WIDE_INT_PRINT_DEC, - debug_info_section_label, ref->die_offset); + debug_info_section_label, (HOST_WIDE_INT) ref->die_offset); } /* Convert a DIE tag into its string name. */