Functions on PowerPC64 using ELFv2 ABI may have 2 entry points: global and local. When using local entry points, symbol st_other field is set, but it's not visible on llvm-objdump, unlike objdump.
This prints ELF symbol "st_other" field value just before symbol name, as it's required for validating D59436 and possibly D56586.
$ ~/src/llvm-project-oficial/build-release-master/bin/llvm-objdump -t localentry.o localentry.o: file format ELF64-ppc64 SYMBOL TABLE: 0000000000000000 l df *ABS* 00000000 localentry.c 0000000000000000 l d .toc 00000000 .toc 0000000000000000 *UND* 00000000 .TOC. 0000000000000000 gw F .text 0000002c 0x60 __impl_openattt 0000000000000000 g O .bss 00000004 a 0000000000000000 g F .text 0000002c 0x60 openattt 0000000000000000 gw F .text 0000002c 0x60 openattt@FBSD_1.1
Note this may break old test cases based on llvm-objdump.