From: Saleem Abdulrasool Date: Sun, 9 Feb 2014 03:13:07 +0000 (+0000) Subject: tools: cast the right operand X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=12ea35fc6a64ab4e0d4194a198e01974f76fd2dd;p=oota-llvm.git tools: cast the right operand Properly apply the fix intended by SVN r201032. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201036 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-readobj/ARMEHABIPrinter.h b/tools/llvm-readobj/ARMEHABIPrinter.h index 35c58ef3e46..75e2bee6b7b 100644 --- a/tools/llvm-readobj/ARMEHABIPrinter.h +++ b/tools/llvm-readobj/ARMEHABIPrinter.h @@ -376,7 +376,7 @@ PrinterContext::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 (static_cast(RI->r_offset) == IndexTableOffset) { + if (RI->r_offset == static_cast(IndexTableOffset)) { typename object::ELFFile::Elf_Rela RelA; RelA.r_offset = RI->r_offset; RelA.r_info = RI->r_info;