[llvm] r264693 - [llvm-readobj] Support GNU style dyn-relocations

Rafael EspĂ­ndola via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 29 05:15:33 PDT 2016


> +  unsigned Width = (ELFT::Is64Bits) ? 16 : 8;

You don't need the parenthesis.

> -    OS << Addend;
> +    OS << ((IsRela) ? " + Addend" : "");

You don't need the parenthesis.

> +  unsigned Width = (ELFT::Is64Bits) ? 16 : 8;

You don't need the parenthesis.


Cheers,
Rafael


More information about the llvm-commits mailing list