tools: cast the right operand
[oota-llvm.git] / tools / llvm-readobj / ARMEHABIPrinter.h
index 35c58ef3e4629b25f747fa455af7bce753b40235..75e2bee6b7b12f30c72ad6e7c9c21a606aa1f535 100644 (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 (static_cast<unsigned>(RI->r_offset) == IndexTableOffset) {
+        if (RI->r_offset == static_cast<unsigned>(IndexTableOffset)) {
           typename object::ELFFile<ET>::Elf_Rela RelA;
           RelA.r_offset = RI->r_offset;
           RelA.r_info = RI->r_info;