When dumping elf object's symbol table info, gnu-objdump will give:
SYMBOL TABLE: 0000000000001004 l F .text 0000000000000000 lfoo 0000000000001008 l O .text 0000000000000000 lbar 0000000000001004 g F .text 0000000000000000 foo 0000000000001008 g O .text 0000000000000000 bar
llvm-objdump will give:
0000000000001004 l F .text 00000000 lfoo 0000000000001008 l .text 00000000 lbar 0000000000001004 g F .text 00000000 foo 0000000000001008 g .text 00000000 bar
To pass llvm-objdump tests, I have to change some tests for Mach-O and Wasm which I am not so familiar with ... Is this ok to apply these changes? Because gnu-objdump display different info on Mach-O, compared with llvm-objdump