tools: explicitly cast to avoid a warning

llvm-svn: 201032
This commit is contained in:
Saleem Abdulrasool 2014-02-09 01:12:21 +00:00
parent 6056d5e918
commit 97497b0f1c
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ PrinterContext<ET>::FindExceptionTable(unsigned IndexSectionIndex,
if (SI->sh_type == ELF::SHT_REL && SI->sh_info == IndexSectionIndex) {
for (Elf_Rel_iterator RI = ELF->begin_rel(&*SI), RE = ELF->end_rel(&*SI);
RI != RE; ++RI) {
if (RI->r_offset == IndexTableOffset) {
if (static_cast<unsigned>(RI->r_offset) == IndexTableOffset) {
typename object::ELFFile<ET>::Elf_Rela RelA;
RelA.r_offset = RI->r_offset;
RelA.r_info = RI->r_info;