If --just-syms is used the mapping symbols from the ELF file will be absolute symbols with no section. The code to process mapping symbols in --fix-cortex-a53-843419 assumes that these symbols have a defining section so a crash will result when --just-syms is used. The simple fix is to not
process the symbol when it doesn't have a section (there is no section to search for errata).
I'm a little surprised that --just-syms imports local symbols, as they are in theory not accessible from other objects.
Fixes PR37971 (https://bugs.llvm.org/show_bug.cgi?id=37971)