Index: incremental.cc =================================================================== RCS file: /cvs/src/src/gold/incremental.cc,v retrieving revision 1.20 diff -p -u -r1.20 incremental.cc --- incremental.cc 12 Aug 2010 22:14:59 -0000 1.20 +++ incremental.cc 18 Aug 2010 23:58:55 -0000 @@ -784,7 +784,7 @@ Output_section_incremental_inputsinput_files().end(); ++p) { - gold_assert(pov - oview == (*p)->get_offset()); + gold_assert(static_cast(pov - oview) == (*p)->get_offset()); section_offset_type filename_offset = strtab->get_offset_from_key((*p)->get_filename_key()); const Timespec& mtime = (*p)->get_mtime(); @@ -827,7 +827,8 @@ Output_section_incremental_inputsget_info_offset()); + gold_assert(static_cast(pov - oview) + == (*p)->get_info_offset()); Incremental_object_entry* entry = (*p)->object_entry(); gold_assert(entry != NULL); const Object* obj = entry->object(); @@ -897,7 +898,8 @@ Output_section_incremental_inputsget_info_offset()); + gold_assert(static_cast(pov - oview) + == (*p)->get_info_offset()); Incremental_object_entry* entry = (*p)->object_entry(); gold_assert(entry != NULL); const Object* obj = entry->object(); @@ -920,7 +922,8 @@ Output_section_incremental_inputsget_info_offset()); + gold_assert(static_cast(pov - oview) + == (*p)->get_info_offset()); Incremental_archive_entry* entry = (*p)->archive_entry(); gold_assert(entry != NULL);