Simplify boolean expressions in tools/llvm-objdump.
authorRafael Espindola <rafael.espindola@gmail.com>
Sat, 24 Oct 2015 23:19:10 +0000 (23:19 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Sat, 24 Oct 2015 23:19:10 +0000 (23:19 +0000)
Patch by Richard.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251215 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-objdump/MachODump.cpp

index 6b70c011c0277ce107ee9f416effd9edc257f884..3ea6fe4c99b7220e9400907380bcdf5eeef07e19 100644 (file)
@@ -4351,7 +4351,7 @@ static bool print_class_ro64_t(uint64_t p, struct DisassembleInfo *info,
   if (cro.baseProperties + n_value != 0)
     print_objc_property_list64(cro.baseProperties + n_value, info);
 
-  is_meta_class = (cro.flags & RO_META) ? true : false;
+  is_meta_class = (cro.flags & RO_META) != 0;
   return true;
 }
 
@@ -4415,7 +4415,7 @@ static bool print_class_ro32_t(uint32_t p, struct DisassembleInfo *info,
          << format("0x%" PRIx32, cro.baseProperties) << "\n";
   if (cro.baseProperties != 0)
     print_objc_property_list32(cro.baseProperties, info);
-  is_meta_class = (cro.flags & RO_META) ? true : false;
+  is_meta_class = (cro.flags & RO_META) != 0;
   return true;
 }